Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V3/Models/CompletedApprovalPreApprovalTriggerResult.md
2025-02-20 12:59:19 -05:00

1.7 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
completed-approval-pre-approval-trigger-result CompletedApprovalPreApprovalTriggerResult CompletedApprovalPreApprovalTriggerResult CompletedApprovalPreApprovalTriggerResult pythonsdk
python
Python
sdk
CompletedApprovalPreApprovalTriggerResult
CompletedApprovalPreApprovalTriggerResult
/tools/sdk/python/v3/models/completed-approval-pre-approval-trigger-result
SDK
Software Development Kit
CompletedApprovalPreApprovalTriggerResult
CompletedApprovalPreApprovalTriggerResult

CompletedApprovalPreApprovalTriggerResult

If the access request submitted event trigger is configured and this access request was intercepted by it, then this is the result of the trigger's decision to either approve or deny the request.

Properties

Name Type Description Notes
comment str The comment from the trigger [optional]
decision CompletedApprovalState [optional]
reviewer str The name of the approver [optional]
var_date datetime The date and time the trigger decided on the request [optional]
}

Example

from sailpoint.v3.models.completed_approval_pre_approval_trigger_result import CompletedApprovalPreApprovalTriggerResult

completed_approval_pre_approval_trigger_result = CompletedApprovalPreApprovalTriggerResult(
comment='This request was autoapproved by our automated ETS subscriber',
decision='APPROVED',
reviewer='Automated AR Approval',
var_date='2022-06-07T19:18:40.748Z'
)

[Back to top]