Skip to main content

AccountUncorrelatedSource

The source the accounts are uncorrelated from.

Properties

NameTypeDescriptionNotes
typeEnum [ 'SOURCE' ]The DTO type of the source the accounts are uncorrelated from.[required]
idstrThe ID of the source the accounts are uncorrelated from.[required]
namestrDisplay name of the source the accounts are uncorrelated from.[required]
}

Example

from sailpoint.beta.models.account_uncorrelated_source import AccountUncorrelatedSource

account_uncorrelated_source = AccountUncorrelatedSource(
type='SOURCE',
id='2c6180835d191a86015d28455b4b231b',
name='Corporate Directory'
)

[Back to top]