Model/NewlyCreatedFilterModel.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 NewlyCreatedFilterModel.
 
.DESCRIPTION
 
* `All` = 0 * `NewlyCreatedOnly` = 1 * `NotNewlyCreated` = 2
#>


enum NewlyCreatedFilterModel {
    # enum value: "0"
    All
    # enum value: "1"
    NewlyCreatedOnly
    # enum value: "2"
    NotNewlyCreated
}