Skip to main content

AccountAggregationCompletedSource

Source ISC is aggregating accounts from.

Properties

NameTypeDescriptionNotes
typeEnum [ 'SOURCE' ]Source's DTO type.[required]
idstrSource's unique ID.[required]
namestrSource's name.[required]
}

Example

from sailpoint.beta.models.account_aggregation_completed_source import AccountAggregationCompletedSource

account_aggregation_completed_source = AccountAggregationCompletedSource(
type='SOURCE',
id='2c9180835d191a86015d28455b4b232a',
name='HR Active Directory'
)

[Back to top]