A stage in the request review process
| 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 |
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)