Skip to main content

AccessItemDiff

Properties

NameTypeDescriptionNotes
idstrthe id of the access item[optional]
event_typeEnum [ 'ADD', 'REMOVE' ][optional]
display_namestrthe display name of the access item[optional]
source_namestrthe source name of the access item[optional]
}

Example

from sailpoint.beta.models.access_item_diff import AccessItemDiff

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

[Back to top]