Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/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
v2024-manual-work-item-details ManualWorkItemDetails ManualWorkItemDetails ManualWorkItemDetails powershellsdk
powershell
PowerShell
sdk
ManualWorkItemDetails
V2024ManualWorkItemDetails
/tools/sdk/powershell/v2024/models/manual-work-item-details
SDK
Software Development Kit
ManualWorkItemDetails
V2024ManualWorkItemDetails

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