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.identity_profiles.models.identitypreviewresponse_identity import IdentitypreviewresponseIdentity

identitypreviewresponse_identity = IdentitypreviewresponseIdentity(
type='IDENTITY',
id='2c7180a46faadee4016fb4e018c20642',
name='Michael Michaels'
)

[Back to top]