Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/Beta/Models/AttributeChange.md
2025-07-25 15:10:03 +00:00

910 B

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-attribute-change AttributeChange AttributeChange AttributeChange pythonsdk
python
Python
sdk
AttributeChange
BetaAttributeChange
/tools/sdk/python/beta/models/attribute-change
SDK
Software Development Kit
AttributeChange
BetaAttributeChange

AttributeChange

Properties

Name Type Description Notes
name str the attribute name [optional]
previous_value str the old value of attribute [optional]
new_value str the new value of attribute [optional]
}

Example

from sailpoint.beta.models.attribute_change import AttributeChange

attribute_change = AttributeChange(
name='firstname',
previous_value='adam',
new_value='zampa'
)

[Back to top]