Model/ProjectMappingItemStageStatus.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 ProjectMappingItemStageStatus. .DESCRIPTION * `NotStart` = 0 * `Waiting` = 1 * `Queued` = 2 * `InProgress` = 3 * `Successful` = 4 * `Exceptioned` = 5 * `Failed` = 6 * `Stopped` = 7 #> enum ProjectMappingItemStageStatus { # enum value: "0" NotStart # enum value: "1" Waiting # enum value: "2" Queued # enum value: "3" InProgress # enum value: "4" Successful # enum value: "5" Exceptioned # enum value: "6" Failed # enum value: "7" Stopped } |