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

1.7 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
v2024-account-status-changed AccountStatusChanged AccountStatusChanged AccountStatusChanged pythonsdk
python
Python
sdk
AccountStatusChanged
V2024AccountStatusChanged
/tools/sdk/python/v2024/models/account-status-changed
SDK
Software Development Kit
AccountStatusChanged
V2024AccountStatusChanged

AccountStatusChanged

Properties

Name Type Description Notes
event_type str the event type [optional]
identity_id str the identity id [optional]
dt str the date of event [optional]
account AccountStatusChangedAccount [optional]
status_change AccountStatusChangedStatusChange [optional]
}

Example

from sailpoint.v2024.models.account_status_changed import AccountStatusChanged

account_status_changed = AccountStatusChanged(
event_type='',
identity_id='',
dt='',
account=sailpoint.v2024.models.account_status_changed_account.AccountStatusChanged_account(
                    id = '', 
                    native_identity = '', 
                    display_name = '', 
                    source_id = '', 
                    source_name = '', 
                    entitlement_count = 56, 
                    access_type = '', ),
status_change=sailpoint.v2024.models.account_status_changed_status_change.AccountStatusChanged_statusChange(
                    previous_status = 'enabled', 
                    new_status = 'enabled', )
)

[Back to top]