SubmitPullReviewOptions are options to submit a pending pull review
| Name | Type | Description | Notes |
|---|---|---|---|
| body | str | [optional] | |
| event | str | ReviewStateType review state type | [optional] |
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)