Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.05 KB

File metadata and controls

33 lines (24 loc) · 1.05 KB

PullRequestMeta

PullRequestMeta PR info if an issue is a PR

Properties

Name Type Description Notes
draft bool [optional]
html_url str [optional]
merged bool [optional]
merged_at datetime [optional]

Example

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)

[Back to Model list] [Back to API list] [Back to README]