beta/src/PSSailpointBeta/Model/ManualWorkItemState.ps1

#
# Identity Security Cloud Beta API
# Use these APIs to interact with the Identity Security Cloud platform to achieve repeatable, automated processes with greater scalability. These APIs are in beta and are subject to change. We encourage you to join the SailPoint Developer Community forum at https://developer.sailpoint.com/discuss to connect with other developers using our APIs.
# Version: 3.1.0-beta
# Generated by OpenAPI Generator: https://openapi-generator.tech
#

<#
.SYNOPSIS

Enum ManualWorkItemState.

.DESCRIPTION

Indicates the state of the request processing for this item: * PENDING: The request for this item is awaiting processing. * APPROVED: The request for this item has been approved. * REJECTED: The request for this item was rejected. * EXPIRED: The request for this item expired with no action taken. * CANCELLED: The request for this item was cancelled with no user action. * ARCHIVED: The request for this item has been archived after completion.
#>


enum ManualWorkItemState {
    # enum value: "PENDING"
    PENDING
    # enum value: "APPROVED"
    APPROVED
    # enum value: "REJECTED"
    REJECTED
    # enum value: "EXPIRED"
    EXPIRED
    # enum value: "CANCELLED"
    CANCELLED
    # enum value: "ARCHIVED"
    ARCHIVED
}