Model/PictureType.ps1

#
# SMServer V6
# Syncplify.me Server! REST API
# Version: 1.0.0
# Generated by OpenAPI Generator: https://openapi-generator.tech
#

<#
.SYNOPSIS

No summary available.

.DESCRIPTION

No description available.

.PARAMETER Kind
No description available.

.PARAMETER IdIfBuiltIn
No description available.

.PARAMETER Base64ifCustom
No description available.

.OUTPUTS

PictureType<PSCustomObject>
#>


function New-SS6PictureType {
    [CmdletBinding()]
    Param (
        [Parameter(Position = 0, ValueFromPipelineByPropertyName = $true)]
        [PSCustomObject]
        ${Kind},
        [Parameter(Position = 1, ValueFromPipelineByPropertyName = $true)]
        [System.Nullable[Int32]]
        ${IdIfBuiltIn},
        [Parameter(Position = 2, ValueFromPipelineByPropertyName = $true)]
        [String]
        ${Base64ifCustom}
    )

    Process {
        'Creating object: SS6AdminModule => SS6PictureType' | Write-Debug
        $PSBoundParameters | Out-DebugParameter | Write-Debug

        $PSO = [PSCustomObject]@{
            "kind" = ${Kind}
            "idIfBuiltIn" = ${IdIfBuiltIn}
            "base64ifCustom" = ${Base64ifCustom}
        }

        return $PSO
    }
}