v3/src/PSSailpoint/Model/ManualWorkItemState.ps1

#
# IdentityNow V3 API
# Use these APIs to interact with the IdentityNow platform to achieve repeatable, automated processes with greater scalability. 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.0.0
# 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
}