Files
developer.sailpoint.com/docs/tools/sdk/powershell/reference/v2024/Models/ApprovalStatusDto1.md
2025-01-28 09:59:02 -05:00

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
v2024-approval-status-dto1 ApprovalStatusDto1 ApprovalStatusDto1 ApprovalStatusDto1 powershellsdk
powershell
PowerShell
sdk
ApprovalStatusDto1
/tools/sdk/powershell/v2024/models/approval-status-dto1
SDK
Software Development Kit
ApprovalStatusDto1

ApprovalStatusDto1

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 ApprovalStatusDtoOriginalOwner [optional]
CurrentOwner Pointer to ApprovalStatusDtoCurrentOwner [optional]
Modified Pointer to System.DateTime Time at which item was modified. [optional]
Status Pointer to ManualWorkItemState [optional]
Scheme Pointer to ApprovalScheme [optional]
ErrorMessages Pointer to []ErrorMessageDto1 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
$ApprovalStatusDto1 = Initialize-PSSailpoint.V2024ApprovalStatusDto1  -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
$ApprovalStatusDto1 | ConvertTo-JSON

[Back to top]