Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.26 KB

CreatePullReviewOptions.md

File metadata and controls

33 lines (24 loc) · 1.26 KB

CreatePullReviewOptions

CreatePullReviewOptions are options to create a pull review

Properties

Name Type Description Notes
body str [optional]
comments List[CreatePullReviewComment] [optional]
commit_id str [optional]
event str ReviewStateType review state type [optional]

Example

from clientapi_forgejo.models.create_pull_review_options import CreatePullReviewOptions

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

# convert the object into a dict
create_pull_review_options_dict = create_pull_review_options_instance.to_dict()
# create an instance of CreatePullReviewOptions from a dict
create_pull_review_options_from_dict = CreatePullReviewOptions.from_dict(create_pull_review_options_dict)

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