Skip to main content

ApprovalStatusDto1

Properties

NameTypeDescriptionNotes
ForwardedBooleanTrue if the request for this item was forwarded from one owner to another.[optional] [default to $false]
OriginalOwnerApprovalStatusDtoOriginalOwner[optional]
CurrentOwnerApprovalStatusDtoCurrentOwner[optional]
ModifiedSystem.DateTimeTime at which item was modified.[optional]
StatusManualWorkItemState[optional]
SchemeApprovalScheme[optional]
ErrorMessages[]ErrorMessageDto1If the request failed, includes any error messages that were generated.[optional]
CommentStringComment, if any, provided by the approver.[optional]
RemoveDateSystem.DateTimeThe date the role or access profile or entitlement is no longer assigned to the specified identity.[optional]

Examples

  • Prepare the resource
$ApprovalStatusDto1 = Initialize-PSSailpoint.V2024ApprovalStatusDto1  -Forwarded false `
-OriginalOwner null `
-CurrentOwner null `
-Modified 2019-08-23T18:52:57.398Z `
-Status null `
-Scheme null `
-ErrorMessages null `
-Comment I approve this request `
-RemoveDate 2020-07-11T00:00Z
  • Convert the resource to JSON
$ApprovalStatusDto1 | ConvertTo-JSON

[Back to top]