Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.1 KB

File metadata and controls

32 lines (23 loc) · 1.1 KB

RequestStage

A stage in the request review process

Properties

Name Type Description Notes
stage int The stage number
operator ReviewStageOperator The operator to apply to reviewers in this stage
reviewers List[RequestReviewer] The reviewers for this stage

Example

from opal_security.models.request_stage import RequestStage

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

# convert the object into a dict
request_stage_dict = request_stage_instance.to_dict()
# create an instance of RequestStage from a dict
request_stage_from_dict = RequestStage.from_dict(request_stage_dict)

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