Skip to main content

AccountCorrelatedIdentity

Identity the account is correlated with.

Properties

NameTypeDescriptionNotes
typeEnum [ 'IDENTITY' ]DTO type of the identity the account is correlated with.[required]
idstrID of the identity the account is correlated with.[required]
namestrDisplay name of the identity the account is correlated with.[required]
}

Example

from sailpoint.beta.models.account_correlated_identity import AccountCorrelatedIdentity

account_correlated_identity = AccountCorrelatedIdentity(
type='IDENTITY',
id='2c7180a46faadee4016fb4e018c20642',
name='Michael Michaels'
)

[Back to top]