mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-07 20:37:46 +00:00
adding powershell sdk docs back
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
---
|
||||
id: v2024-manual-work-item-details
|
||||
title: ManualWorkItemDetails
|
||||
pagination_label: ManualWorkItemDetails
|
||||
sidebar_label: ManualWorkItemDetails
|
||||
sidebar_class_name: powershellsdk
|
||||
keywords: ['powershell', 'PowerShell', 'sdk', 'ManualWorkItemDetails', 'V2024ManualWorkItemDetails']
|
||||
slug: /tools/sdk/powershell/v2024/models/manual-work-item-details
|
||||
tags: ['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**](manual-work-item-details-original-owner) | | [optional]
|
||||
**CurrentOwner** | Pointer to [**ManualWorkItemDetailsCurrentOwner**](manual-work-item-details-current-owner) | | [optional]
|
||||
**Modified** | Pointer to **System.DateTime** | Time at which item was modified. | [optional]
|
||||
**Status** | Pointer to [**ManualWorkItemState**](manual-work-item-state) | | [optional]
|
||||
**ForwardHistory** | Pointer to [**[]ApprovalForwardHistory**](approval-forward-history) | The history of approval forward action. | [optional]
|
||||
|
||||
## Examples
|
||||
|
||||
- Prepare the resource
|
||||
```powershell
|
||||
$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
|
||||
```powershell
|
||||
$ManualWorkItemDetails | ConvertTo-JSON
|
||||
```
|
||||
|
||||
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user