Skip to main content

TrackerValueDTO

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]
valuestrTechnical name of the deleted Attribute value.[optional]
}

Example

from sailpoint.access_model_metadata.models.tracker_value_dto import TrackerValueDTO

tracker_value_dto = TrackerValueDTO(
id='2c9180867817ac4d017817c491119a20',
type='value',
status='DELETING',
errors=[
''
],
created='2020-10-08T18:33:52.029Z',
value='public'
)

[Back to top]