Model/InviteGuestGalleryMultipleInvite.ps1

#
# Cloud Governance Api
# Contact: support@avepoint.com
#

<#
InviteGuestGalleryMultipleInvite<PSCustomObject>
#>


function New-InviteGuestGalleryMultipleInvite {
    [CmdletBinding()]
    Param (
        [Parameter(ValueFromPipelineByPropertyName = $true)]
        [String]
        ${FileName},
        [Parameter(ValueFromPipelineByPropertyName = $true)]
        [String]
        ${DownloadFileName},
        [Parameter(ValueFromPipelineByPropertyName = $true)]
        [String]
        ${ResultFileName},
        [Parameter(ValueFromPipelineByPropertyName = $true)]
        [String]
        ${MonitorId},
        [Parameter(ValueFromPipelineByPropertyName = $true)]
        [System.Nullable[Boolean]]
        ${IsGenerateReport} = $false,
        [Parameter(ValueFromPipelineByPropertyName = $true)]
        [String]
        ${ActivityId}
    )

    Process {
        'Creating PSCustomObject: Cloud.Governance.Client => InviteGuestGalleryMultipleInvite' | Write-Debug
        $PSBoundParameters | Out-DebugParameter | Write-Debug

        
        $PSO = [PSCustomObject]@{
            "FileName" = ${FileName}
            "DownloadFileName" = ${DownloadFileName}
            "ResultFileName" = ${ResultFileName}
            "MonitorId" = ${MonitorId}
            "IsGenerateReport" = ${IsGenerateReport}
            "ActivityId" = ${ActivityId}
        }

        return $PSO
    }
}

<#
InviteGuestGalleryMultipleInvite<PSCustomObject>
#>

function ConvertFrom-JsonToInviteGuestGalleryMultipleInvite {
    Param(
        [AllowEmptyString()]
        [string]$Json
    )

    Process {
        'Converting JSON to PSCustomObject: Cloud.Governance.Client => InviteGuestGalleryMultipleInvite' | Write-Debug
        $PSBoundParameters | Out-DebugParameter | Write-Debug

        $JsonParameters = ConvertFrom-Json -InputObject $Json

        # check if Json contains properties not defined in InviteGuestGalleryMultipleInvite
        $AllProperties = $("FileName", "DownloadFileName", "ResultFileName", "MonitorId", "IsGenerateReport", "ActivityId")
        foreach ($name in $JsonParameters.PsObject.Properties.Name) {
            if (!($AllProperties.Contains($name))) {
                throw "Error! JSON key '$name' not found in the properties: $($AllProperties)"
            }
        }

        if (!([bool]($JsonParameters.PSobject.Properties.name -match "FileName"))) { #optional property not found
            $FileName = $null
        } else {
            $FileName = $JsonParameters.PSobject.Properties["FileName"].value
        }

        if (!([bool]($JsonParameters.PSobject.Properties.name -match "DownloadFileName"))) { #optional property not found
            $DownloadFileName = $null
        } else {
            $DownloadFileName = $JsonParameters.PSobject.Properties["DownloadFileName"].value
        }

        if (!([bool]($JsonParameters.PSobject.Properties.name -match "ResultFileName"))) { #optional property not found
            $ResultFileName = $null
        } else {
            $ResultFileName = $JsonParameters.PSobject.Properties["ResultFileName"].value
        }

        if (!([bool]($JsonParameters.PSobject.Properties.name -match "MonitorId"))) { #optional property not found
            $MonitorId = $null
        } else {
            $MonitorId = $JsonParameters.PSobject.Properties["MonitorId"].value
        }

        if (!([bool]($JsonParameters.PSobject.Properties.name -match "IsGenerateReport"))) { #optional property not found
            $IsGenerateReport = $null
        } else {
            $IsGenerateReport = $JsonParameters.PSobject.Properties["IsGenerateReport"].value
        }

        if (!([bool]($JsonParameters.PSobject.Properties.name -match "ActivityId"))) { #optional property not found
            $ActivityId = $null
        } else {
            $ActivityId = $JsonParameters.PSobject.Properties["ActivityId"].value
        }

        $PSO = [PSCustomObject]@{
            "FileName" = ${FileName}
            "DownloadFileName" = ${DownloadFileName}
            "ResultFileName" = ${ResultFileName}
            "MonitorId" = ${MonitorId}
            "IsGenerateReport" = ${IsGenerateReport}
            "ActivityId" = ${ActivityId}
        }

        return $PSO
    }

}