Skip to main content

RequesteditemstatusPreApprovalTriggerDetails

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.access_requests.models.requesteditemstatus_pre_approval_trigger_details import RequesteditemstatusPreApprovalTriggerDetails

requesteditemstatus_pre_approval_trigger_details = RequesteditemstatusPreApprovalTriggerDetails(
comment='Access is Approved',
reviewer='John Doe',
decision='APPROVED'
)

[Back to top]