Skip to main content

Accountdeleterequestinput

Contains the required information for processing a user-initiated account deletion request, including the reason for deletion.

Properties

NameTypeDescriptionNotes
commentsstrReason for deleting the account.[optional]
}

Example

from sailpoint.account_deletion_requests.models.accountdeleterequestinput import Accountdeleterequestinput

accountdeleterequestinput = Accountdeleterequestinput(
comments='Requesting account deletion request'
)

[Back to top]