Skip to main content

TrackerKeyDTO

Properties

NameTypeDescriptionNotes
IdStringID of the tracker created to record this delete operation.[optional]
TypeStringThe type of object being tracked.[optional]
StatusStringThe status of the delete operation.[optional]
Errors[]StringAny errors encountered while processing the delete operation.[optional]
CreatedSystem.DateTimeThe time the delete operation was initiated.[optional]
KeyStringTechnical name of the deleted Attribute.[optional]

Examples

  • Prepare the resource
$TrackerKeyDTO = Initialize-TrackerKeyDTO -Id 2c9180867817ac4d017817c491119a20 `
-Type metadata-attribute `
-Status DELETING `
-Errors null `
-Created 2020-10-08T18:33:52.029Z `
-Key iscPrivacy
  • Convert the resource to JSON
$TrackerKeyDTO | ConvertTo-JSON

[Back to top]