mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 20:37:46 +00:00
1.7 KiB
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 | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| beta-account-status-changed | AccountStatusChanged | AccountStatusChanged | AccountStatusChanged | pythonsdk |
|
/tools/sdk/python/beta/models/account-status-changed |
|
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.beta.models.account_status_changed import AccountStatusChanged
account_status_changed = AccountStatusChanged(
event_type='',
identity_id='',
dt='',
account=sailpoint.beta.models.account_status_changed_account.AccountStatusChanged_account(
id = '',
native_identity = '',
display_name = '',
source_id = '',
source_name = '',
entitlement_count = 56,
access_type = '', ),
status_change=sailpoint.beta.models.account_status_changed_status_change.AccountStatusChanged_statusChange(
previous_status = 'enabled',
new_status = 'enabled', )
)