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.identity_history.models.accessitemdiff import Accessitemdiff

accessitemdiff = Accessitemdiff(
id='',
event_type='ADD',
display_name='',
source_name=''
)

[Back to top]