add method and model docs for powershell and python v2025

This commit is contained in:
darrell-thobe-sp
2025-04-01 09:23:12 -04:00
parent c12ffb7efc
commit 5d8f458a33
2414 changed files with 191212 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
---
id: v2025-manual-work-item-details
title: ManualWorkItemDetails
pagination_label: ManualWorkItemDetails
sidebar_label: ManualWorkItemDetails
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'ManualWorkItemDetails', 'V2025ManualWorkItemDetails']
slug: /tools/sdk/powershell/v2025/models/manual-work-item-details
tags: ['SDK', 'Software Development Kit', 'ManualWorkItemDetails', 'V2025ManualWorkItemDetails']
---
# ManualWorkItemDetails
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Forwarded** | **Boolean** | True if the request for this item was forwarded from one owner to another. | [optional] [default to $false]
**OriginalOwner** | [**ManualWorkItemDetailsOriginalOwner**](manual-work-item-details-original-owner) | | [optional]
**CurrentOwner** | [**ManualWorkItemDetailsCurrentOwner**](manual-work-item-details-current-owner) | | [optional]
**Modified** | **System.DateTime** | Time at which item was modified. | [optional]
**Status** | [**ManualWorkItemState**](manual-work-item-state) | | [optional]
**ForwardHistory** | [**[]ApprovalForwardHistory**](approval-forward-history) | The history of approval forward action. | [optional]
## Examples
- Prepare the resource
```powershell
$ManualWorkItemDetails = Initialize-PSSailpoint.V2025ManualWorkItemDetails -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]](#)