Skip to main content

BaseCommonDto

Properties

NameTypeDescriptionNotes
IdStringSystem-generated unique ID of the Object[optional] [readonly]
NameStringName of the Object[required]
CreatedSystem.DateTimeCreation date of the Object[optional] [readonly]
ModifiedSystem.DateTimeLast modification date of the Object[optional] [readonly]

Examples

  • Prepare the resource
$BaseCommonDto = Initialize-PSSailpoint.V2024BaseCommonDto  -Id id12345 `
-Name aName `
-Created 2015-05-28T14:07:17Z `
-Modified 2015-05-28T14:07:17Z
  • Convert the resource to JSON
$BaseCommonDto | ConvertTo-JSON

[Back to top]