Skip to main content

IdentityDeletedIdentity

Deleted identity.

Properties

NameTypeDescriptionNotes
typeEnum [ 'IDENTITY' ]Deleted identity's DTO type.[required]
idstrDeleted identity ID.[required]
namestrDeleted identity's display name.[required]
}

Example

from sailpoint.v2024.models.identity_deleted_identity import IdentityDeletedIdentity

identity_deleted_identity = IdentityDeletedIdentity(
type='IDENTITY',
id='2c7180a46faadee4016fb4e018c20642',
name='Michael Michaels'
)

[Back to top]