PullReviewRequestOptions are options to add or remove pull review requests
Name | Type | Description | Notes |
---|---|---|---|
reviewers | List[str] | [optional] | |
team_reviewers | List[str] | [optional] |
from clientapi_forgejo.models.pull_review_request_options import PullReviewRequestOptions
# TODO update the JSON string below
json = "{}"
# create an instance of PullReviewRequestOptions from a JSON string
pull_review_request_options_instance = PullReviewRequestOptions.from_json(json)
# print the JSON string representation of the object
print(PullReviewRequestOptions.to_json())
# convert the object into a dict
pull_review_request_options_dict = pull_review_request_options_instance.to_dict()
# create an instance of PullReviewRequestOptions from a dict
pull_review_request_options_from_dict = PullReviewRequestOptions.from_dict(pull_review_request_options_dict)