Skip to main content

ApprovalSchemeForRole

Properties

NameTypeDescriptionNotes
approver_typeEnum [ 'OWNER', 'MANAGER', 'GOVERNANCE_GROUP' ]Describes the individual or group that is responsible for an approval step. Values are as follows. OWNER: Owner of the associated Role MANAGER: Manager of the Identity making the request GOVERNANCE_GROUP: A Governance Group, the ID of which is specified by the approverId field[optional]
approver_idstrId of the specific approver, used only when approverType is GOVERNANCE_GROUP[optional]
}

Example

from sailpoint.v3.models.approval_scheme_for_role import ApprovalSchemeForRole

approval_scheme_for_role = ApprovalSchemeForRole(
approver_type='GOVERNANCE_GROUP',
approver_id='46c79819-a69f-49a2-becb-12c971ae66c6'
)

[Back to top]