AccountDeleteRequestInput
Contains the required information for processing a user-initiated account deletion request, including the reason for deletion.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| comments | str | Reason for deleting the account. | [optional] |
| } |
Example
from sailpoint.account_deletion_requests.models.account_delete_request_input import AccountDeleteRequestInput
account_delete_request_input = AccountDeleteRequestInput(
comments='Requesting account deletion request'
)