Skip to main content

IdentityPreviewResponseIdentity

Identity's basic details.

Properties

NameTypeDescriptionNotes
typeEnum [ 'IDENTITY' ]Identity's DTO type.[optional]
idstrIdentity ID.[optional]
namestrIdentity's display name.[optional]
}

Example

from sailpoint.v2024.models.identity_preview_response_identity import IdentityPreviewResponseIdentity

identity_preview_response_identity = IdentityPreviewResponseIdentity(
type='IDENTITY',
id='2c7180a46faadee4016fb4e018c20642',
name='Michael Michaels'
)

[Back to top]