Skip to main content

TrackerKeyDTO

Properties

NameTypeDescriptionNotes
idstrID of the tracker created to record this delete operation.[optional]
typestrThe type of object being tracked.[optional]
statusstrThe status of the delete operation.[optional]
errors[]strAny errors encountered while processing the delete operation.[optional]
createddatetimeThe time the delete operation was initiated.[optional]
keystrTechnical name of the deleted Attribute.[optional]
}

Example

from sailpoint.access_model_metadata.models.tracker_key_dto import TrackerKeyDTO

tracker_key_dto = TrackerKeyDTO(
id='2c9180867817ac4d017817c491119a20',
type='metadata-attribute',
status='DELETING',
errors=[
''
],
created='2020-10-08T18:33:52.029Z',
key='iscPrivacy'
)

[Back to top]