Skip to main content

PreApprovalTriggerDetails

Provides additional details about the pre-approval trigger for this request.

Properties

NameTypeDescriptionNotes
commentstrComment left for the pre-approval decision[optional]
reviewerstrThe reviewer of the pre-approval decision[optional]
decisionEnum [ 'APPROVED', 'REJECTED' ]The decision of the pre-approval trigger[optional]
}

Example

from sailpoint.v3.models.pre_approval_trigger_details import PreApprovalTriggerDetails

pre_approval_trigger_details = PreApprovalTriggerDetails(
comment='Access is Approved',
reviewer='John Doe',
decision='APPROVED'
)

[Back to top]