| Name | Type | Description | Notes |
|---|---|---|---|
| RequireManagerApproval | bool | Whether this reviewer stage should require manager approval. | |
| RequireAdminApproval | Pointer to bool | Whether this reviewer stage should require admin approval. | [optional] |
| Operator | string | The operator of the reviewer stage. Admin and manager approval are also treated as reviewers. | |
| OwnerIds | []string |
func NewReviewerStage(requireManagerApproval bool, operator string, ownerIds []string, ) *ReviewerStage
NewReviewerStage instantiates a new ReviewerStage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed
func NewReviewerStageWithDefaults() *ReviewerStage
NewReviewerStageWithDefaults instantiates a new ReviewerStage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set
func (o *ReviewerStage) GetRequireManagerApproval() bool
GetRequireManagerApproval returns the RequireManagerApproval field if non-nil, zero value otherwise.
func (o *ReviewerStage) GetRequireManagerApprovalOk() (*bool, bool)
GetRequireManagerApprovalOk returns a tuple with the RequireManagerApproval field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ReviewerStage) SetRequireManagerApproval(v bool)
SetRequireManagerApproval sets RequireManagerApproval field to given value.
func (o *ReviewerStage) GetRequireAdminApproval() bool
GetRequireAdminApproval returns the RequireAdminApproval field if non-nil, zero value otherwise.
func (o *ReviewerStage) GetRequireAdminApprovalOk() (*bool, bool)
GetRequireAdminApprovalOk returns a tuple with the RequireAdminApproval field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ReviewerStage) SetRequireAdminApproval(v bool)
SetRequireAdminApproval sets RequireAdminApproval field to given value.
func (o *ReviewerStage) HasRequireAdminApproval() bool
HasRequireAdminApproval returns a boolean if a field has been set.
func (o *ReviewerStage) GetOperator() string
GetOperator returns the Operator field if non-nil, zero value otherwise.
func (o *ReviewerStage) GetOperatorOk() (*string, bool)
GetOperatorOk returns a tuple with the Operator field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ReviewerStage) SetOperator(v string)
SetOperator sets Operator field to given value.
func (o *ReviewerStage) GetOwnerIds() []string
GetOwnerIds returns the OwnerIds field if non-nil, zero value otherwise.
func (o *ReviewerStage) GetOwnerIdsOk() (*[]string, bool)
GetOwnerIdsOk returns a tuple with the OwnerIds field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *ReviewerStage) SetOwnerIds(v []string)
SetOwnerIds sets OwnerIds field to given value.