Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.21 KB

ReviewerStage.md

File metadata and controls

33 lines (24 loc) · 1.21 KB

ReviewerStage

A reviewer stage.

Properties

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]

Example

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)

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