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.BetaBaseCommonDto  -Id id12345 `
-Name aName `
-Created 2023-01-03T21:16:22.432Z `
-Modified 2023-01-03T21:16:22.432Z
  • Convert the resource to JSON
$BaseCommonDto | ConvertTo-JSON

[Back to top]