Model/MappingJobStatus.ps1

#
# Fly SDK API
# No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
# Version: 1.0
# Contact: support@avepoint.com
# Generated by OpenAPI Generator: https://openapi-generator.tech
#

<#
.SYNOPSIS
 
Enum MappingJobStatus.
 
.DESCRIPTION
 
* `Unknown` = 0 * `Running` = 1 * `Finished` = 2 * `FinishedWithException` = 3 * `Failed` = 4 * `Stopped` = 5
#>


enum MappingJobStatus {
    # enum value: "0"
    Unknown
    # enum value: "1"
    Running
    # enum value: "2"
    Finished
    # enum value: "3"
    FinishedWithException
    # enum value: "4"
    Failed
    # enum value: "5"
    Stopped
}