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.triggers.models.accountuncorrelated_source import AccountuncorrelatedSource

accountuncorrelated_source = AccountuncorrelatedSource(
type='SOURCE',
id='2c6180835d191a86015d28455b4b231b',
name='Corporate Directory'
)

[Back to top]