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

ManualWorkItemDetails1

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 []ApprovalForwardHistory1 The history of approval forward action. [optional]

Examples

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

[Back to top]