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-Manualworkitemdetails  -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]