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

1.0 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-attributes-changed AttributesChanged AttributesChanged AttributesChanged pythonsdk
python
Python
sdk
AttributesChanged
BetaAttributesChanged
/tools/sdk/python/beta/models/attributes-changed
SDK
Software Development Kit
AttributesChanged
BetaAttributesChanged

AttributesChanged

Properties

Name Type Description Notes
changes []AttributeChange [optional]
event_type str the event type [optional]
identity_id str the identity id [optional]
dt str the date of event [optional]
}

Example

from sailpoint.beta.models.attributes_changed import AttributesChanged

attributes_changed = AttributesChanged(
changes=[
                    {name=firstname, previousValue=adam, newValue=zampa}
                    ],
event_type='',
identity_id='',
dt=''
)

[Back to top]