Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.13 KB

File metadata and controls

31 lines (22 loc) · 1.13 KB

SubmitPullReviewOptions

SubmitPullReviewOptions are options to submit a pending pull review

Properties

Name Type Description Notes
body str [optional]
event str ReviewStateType review state type [optional]

Example

from openapi_client.models.submit_pull_review_options import SubmitPullReviewOptions

# TODO update the JSON string below
json = "{}"
# create an instance of SubmitPullReviewOptions from a JSON string
submit_pull_review_options_instance = SubmitPullReviewOptions.from_json(json)
# print the JSON string representation of the object
print(SubmitPullReviewOptions.to_json())

# convert the object into a dict
submit_pull_review_options_dict = submit_pull_review_options_instance.to_dict()
# create an instance of SubmitPullReviewOptions from a dict
submit_pull_review_options_from_dict = SubmitPullReviewOptions.from_dict(submit_pull_review_options_dict)

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