Skip to main content

AccountaggregationcompletedSource

The source the accounts are being aggregated from.

Properties

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

Example

from sailpoint.triggers.models.accountaggregationcompleted_source import AccountaggregationcompletedSource

accountaggregationcompleted_source = AccountaggregationcompletedSource(
type='SOURCE',
id='2c9180835d191a86015d28455b4b232a',
name='HR Active Directory'
)

[Back to top]