Skip to main content

ManualWorkItemDetails

Properties

NameTypeDescriptionNotes
ForwardedBooleanTrue if the request for this item was forwarded from one owner to another.[optional] [default to $false]
OriginalOwnerManualWorkItemDetailsOriginalOwner[optional]
CurrentOwnerManualWorkItemDetailsCurrentOwner[optional]
ModifiedSystem.DateTimeTime at which item was modified.[optional]
StatusManualWorkItemState[optional]
ForwardHistory[]ApprovalForwardHistoryThe history of approval forward action.[optional]

Examples

  • Prepare the resource
$ManualWorkItemDetails = Initialize-PSSailpoint.V2024ManualWorkItemDetails  -Forwarded true `
-OriginalOwner null `
-CurrentOwner null `
-Modified 2019-08-23T18:52:57.398Z `
-Status null `
-ForwardHistory null
  • Convert the resource to JSON
$ManualWorkItemDetails | ConvertTo-JSON

[Back to top]