Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/ManualWorkItemDetails.md
2025-01-28 13:29:29 -05:00

1.7 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
beta-manual-work-item-details ManualWorkItemDetails ManualWorkItemDetails ManualWorkItemDetails powershellsdk
powershell
PowerShell
sdk
ManualWorkItemDetails
BetaManualWorkItemDetails
/tools/sdk/powershell/beta/models/manual-work-item-details
SDK
Software Development Kit
ManualWorkItemDetails
BetaManualWorkItemDetails

ManualWorkItemDetails

Properties

Name Type Description Notes
Forwarded Pointer to Boolean True if the request for this item was forwarded from one owner to another. [optional] [default to $false]
OriginalOwner Pointer to ManualWorkItemDetailsOriginalOwner [optional]
CurrentOwner Pointer to ManualWorkItemDetailsCurrentOwner [optional]
Modified Pointer to System.DateTime Time at which item was modified. [optional]
Status Pointer to ManualWorkItemState [optional]
ForwardHistory Pointer to []ApprovalForwardHistory The history of approval forward action. [optional]

Examples

  • Prepare the resource
$ManualWorkItemDetails = Initialize-PSSailpoint.BetaManualWorkItemDetails  -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]