Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/AccessItemDiff.md
2025-04-01 09:23:12 -04:00

993 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
v2025-access-item-diff AccessItemDiff AccessItemDiff AccessItemDiff pythonsdk
python
Python
sdk
AccessItemDiff
V2025AccessItemDiff
/tools/sdk/python/v2025/models/access-item-diff
SDK
Software Development Kit
AccessItemDiff
V2025AccessItemDiff

AccessItemDiff

Properties

Name Type Description Notes
id str the id of the access item [optional]
event_type Enum [ 'ADD', 'REMOVE' ] [optional]
display_name str the display name of the access item [optional]
source_name str the source name of the access item [optional]
}

Example

from sailpoint.v2025.models.access_item_diff import AccessItemDiff

access_item_diff = AccessItemDiff(
id='',
event_type='ADD',
display_name='',
source_name=''
)

[Back to top]