Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 986 Bytes

File metadata and controls

29 lines (20 loc) · 986 Bytes

ReviewerStageList

Properties

Name Type Description Notes
stages List[ReviewerStage] A list of reviewer stages.

Example

from opal_security.models.reviewer_stage_list import ReviewerStageList

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

# convert the object into a dict
reviewer_stage_list_dict = reviewer_stage_list_instance.to_dict()
# create an instance of ReviewerStageList from a dict
reviewer_stage_list_from_dict = ReviewerStageList.from_dict(reviewer_stage_list_dict)

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