PullRequestMeta PR info if an issue is a PR
| Name | Type | Description | Notes |
|---|---|---|---|
| draft | bool | [optional] | |
| html_url | str | [optional] | |
| merged | bool | [optional] | |
| merged_at | datetime | [optional] |
from openapi_client.models.pull_request_meta import PullRequestMeta
# TODO update the JSON string below
json = "{}"
# create an instance of PullRequestMeta from a JSON string
pull_request_meta_instance = PullRequestMeta.from_json(json)
# print the JSON string representation of the object
print(PullRequestMeta.to_json())
# convert the object into a dict
pull_request_meta_dict = pull_request_meta_instance.to_dict()
# create an instance of PullRequestMeta from a dict
pull_request_meta_from_dict = PullRequestMeta.from_dict(pull_request_meta_dict)