Skip to main content

AccountStatusChangedAccount

Properties

NameTypeDescriptionNotes
idstrthe ID of the account in the database[optional]
native_identitystrthe native identifier of the account[optional]
display_namestrthe display name of the account[optional]
source_idstrthe ID of the source for this account[optional]
source_namestrthe name of the source for this account[optional]
entitlement_countintthe number of entitlements on this account[optional]
access_typestrthis value is always "account"[optional]
}

Example

from sailpoint.beta.models.account_status_changed_account import AccountStatusChangedAccount

account_status_changed_account = AccountStatusChangedAccount(
id='',
native_identity='',
display_name='',
source_id='',
source_name='',
entitlement_count=56,
access_type=''
)

[Back to top]