Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.06 KB

File metadata and controls

32 lines (23 loc) · 1.06 KB

RequestReviewer

A reviewer in a request stage

Properties

Name Type Description Notes
id UUID The unique identifier of the reviewer
full_name str The user's full name. [optional]
status str The status of this reviewer's review

Example

from opal_security.models.request_reviewer import RequestReviewer

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

# convert the object into a dict
request_reviewer_dict = request_reviewer_instance.to_dict()
# create an instance of RequestReviewer from a dict
request_reviewer_from_dict = RequestReviewer.from_dict(request_reviewer_dict)

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