adding docs back with new ids

This commit is contained in:
darrell-thobe-sp
2025-01-27 16:01:17 -05:00
parent 90087c5d3f
commit b4a279954e
2823 changed files with 130835 additions and 78 deletions

View File

@@ -0,0 +1,53 @@
---
id: approval-status-dto
title: ApprovalStatusDto
pagination_label: ApprovalStatusDto
sidebar_label: ApprovalStatusDto
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'ApprovalStatusDto']
slug: /tools/sdk/powershell/v3/models/approval-status-dto
tags: ['SDK', 'Software Development Kit', 'ApprovalStatusDto']
---
# ApprovalStatusDto
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**ApprovalId** | Pointer to **String** | Unique identifier for the approval. | [optional]
**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 [**ApprovalStatusDtoOriginalOwner**](approval-status-dto-original-owner) | | [optional]
**CurrentOwner** | Pointer to [**ApprovalStatusDtoCurrentOwner**](approval-status-dto-current-owner) | | [optional]
**Modified** | Pointer to **System.DateTime** | Time at which item was modified. | [optional]
**Status** | Pointer to [**ManualWorkItemState**](manual-work-item-state) | | [optional]
**Scheme** | Pointer to [**ApprovalScheme**](approval-scheme) | | [optional]
**ErrorMessages** | Pointer to [**[]ErrorMessageDto**](error-message-dto) | If the request failed, includes any error messages that were generated. | [optional]
**Comment** | Pointer to **String** | Comment, if any, provided by the approver. | [optional]
**RemoveDate** | Pointer to **System.DateTime** | The date the role or access profile or entitlement is no longer assigned to the specified identity. | [optional]
## Examples
- Prepare the resource
```powershell
$ApprovalStatusDto = Initialize-PSSailpoint.V3ApprovalStatusDto -ApprovalId 2c9180877b2b6ea4017b2c545f971429 `
-Forwarded false `
-OriginalOwner null `
-CurrentOwner null `
-Modified 2019-08-23T18:52:57.398Z `
-Status null `
-Scheme null `
-ErrorMessages null `
-Comment I approve this request `
-RemoveDate 2020-07-11T00:00Z
```
- Convert the resource to JSON
```powershell
$ApprovalStatusDto | ConvertTo-JSON
```
[[Back to top]](#)