Files
developer.sailpoint.com/docs/tools/sdk/powershell/refrence/beta/Models/ManualWorkItemDetails.md
darrell-thobe-sp 39d2297259 update to doc files
2025-01-24 14:40:05 -05:00

1.6 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
manual-work-item-details ManualWorkItemDetails ManualWorkItemDetails ManualWorkItemDetails powershellsdk
powershell
PowerShell
sdk
ManualWorkItemDetails
/tools/sdk/powershell/beta/models/manual-work-item-details
SDK
Software Development Kit
ManualWorkItemDetails

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]