Skip to main content

AccountUncorrelatedIdentity

Identity the account is uncorrelated with.

Properties

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

Example

from sailpoint.beta.models.account_uncorrelated_identity import AccountUncorrelatedIdentity

account_uncorrelated_identity = AccountUncorrelatedIdentity(
type='IDENTITY',
id='2c3780a46faadee4016fb4e018c20652',
name='Allen Albertson'
)

[Back to top]