mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-07 04:19:34 +00:00
2.0 KiB
2.0 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 | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| approval-status-dto | ApprovalStatusDto | ApprovalStatusDto | ApprovalStatusDto | powershellsdk |
|
/tools/sdk/powershell/v3/models/approval-status-dto |
|
ApprovalStatusDto
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| ApprovalId | String | Unique identifier for the approval. | [optional] |
| Forwarded | Boolean | True if the request for this item was forwarded from one owner to another. | [optional] [default to $false] |
| OriginalOwner | ApprovalStatusDtoOriginalOwner | [optional] | |
| CurrentOwner | ApprovalStatusDtoCurrentOwner | [optional] | |
| Modified | System.DateTime | Time at which item was modified. | [optional] |
| Status | ManualWorkItemState | [optional] | |
| Scheme | ApprovalScheme | [optional] | |
| ErrorMessages | []ErrorMessageDto | If the request failed, includes any error messages that were generated. | [optional] |
| Comment | String | Comment, if any, provided by the approver. | [optional] |
| RemoveDate | System.DateTime | The date the role or access profile or entitlement is no longer assigned to the specified identity. | [optional] |
Examples
- Prepare the resource
$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
$ApprovalStatusDto | ConvertTo-JSON