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

1.3 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-attributes-changed-changes-inner AccountAttributesChangedChangesInner AccountAttributesChangedChangesInner AccountAttributesChangedChangesInner pythonsdk
python
Python
sdk
AccountAttributesChangedChangesInner
BetaAccountAttributesChangedChangesInner
/tools/sdk/python/beta/models/account-attributes-changed-changes-inner
SDK
Software Development Kit
AccountAttributesChangedChangesInner
BetaAccountAttributesChangedChangesInner

AccountAttributesChangedChangesInner

Properties

Name Type Description Notes
attribute str The name of the attribute. [required]
old_value AccountAttributesChangedChangesInnerOldValue [required]
new_value AccountAttributesChangedChangesInnerNewValue [required]
}

Example

from sailpoint.beta.models.account_attributes_changed_changes_inner import AccountAttributesChangedChangesInner

account_attributes_changed_changes_inner = AccountAttributesChangedChangesInner(
attribute='sn',
old_value=doe,
new_value=ryans
)

[Back to top]