A reviewer stage.
Name | Type | Description | Notes |
---|---|---|---|
require_manager_approval | bool | Whether this reviewer stage should require manager approval. | |
require_admin_approval | bool | Whether this reviewer stage should require admin approval. | [optional] |
operator | str | The operator of the reviewer stage. Admin and manager approval are also treated as reviewers. | |
owner_ids | List[str] |
from opal_security.models.reviewer_stage import ReviewerStage
# TODO update the JSON string below
json = "{}"
# create an instance of ReviewerStage from a JSON string
reviewer_stage_instance = ReviewerStage.from_json(json)
# print the JSON string representation of the object
print(ReviewerStage.to_json())
# convert the object into a dict
reviewer_stage_dict = reviewer_stage_instance.to_dict()
# create an instance of ReviewerStage from a dict
reviewer_stage_from_dict = ReviewerStage.from_dict(reviewer_stage_dict)