Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/Beta/Models/AccountStatusChangedAccount.md
2025-02-20 12:59:19 -05:00

1.5 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
beta-account-status-changed-account AccountStatusChangedAccount AccountStatusChangedAccount AccountStatusChangedAccount pythonsdk
python
Python
sdk
AccountStatusChangedAccount
BetaAccountStatusChangedAccount
/tools/sdk/python/beta/models/account-status-changed-account
SDK
Software Development Kit
AccountStatusChangedAccount
BetaAccountStatusChangedAccount

AccountStatusChangedAccount

Properties

Name Type Description Notes
id str the ID of the account in the database [optional]
native_identity str the native identifier of the account [optional]
display_name str the display name of the account [optional]
source_id str the ID of the source for this account [optional]
source_name str the name of the source for this account [optional]
entitlement_count int the number of entitlements on this account [optional]
access_type str this 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]