AccessRequestPreApproval2
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| approved | bool | Whether or not to approve the access request. | [required] |
| comment | str | A comment about the decision to approve or deny the request. | [required] |
| approver | str | The name of the entity that approved or denied the request. | [required] |
| } |
Example
from sailpoint.triggers.models.access_request_pre_approval2 import AccessRequestPreApproval2
access_request_pre_approval2 = AccessRequestPreApproval2(
approved=False,
comment='This access should be denied, because this will cause an SOD violation.',
approver='AcmeCorpExternalIntegration'
)