AccessRequestPreApproval1
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.v2024.models.access_request_pre_approval1 import AccessRequestPreApproval1
access_request_pre_approval1 = AccessRequestPreApproval1(
approved=False,
comment='This access should be denied, because this will cause an SOD violation.',
approver='AcmeCorpExternalIntegration'
)