Model/PaginationResultExternalPackage.ps1
# # Torizon OTA # No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # Version: 2.0-Beta # Generated by OpenAPI Generator: https://openapi-generator.tech # <# .SYNOPSIS No summary available. .DESCRIPTION No description available. .PARAMETER Values No description available. .PARAMETER Total No description available. .PARAMETER Offset No description available. .PARAMETER Limit No description available. .OUTPUTS PaginationResultExternalPackage<PSCustomObject> #> function Initialize-TorizonPlatformAPIPaginationResultExternalPackage { [CmdletBinding()] Param ( [Parameter(Position = 0, ValueFromPipelineByPropertyName = $true)] [PSCustomObject[]] ${Values}, [Parameter(Position = 1, ValueFromPipelineByPropertyName = $true)] [Int64] ${Total}, [Parameter(Position = 2, ValueFromPipelineByPropertyName = $true)] [Int64] ${Offset}, [Parameter(Position = 3, ValueFromPipelineByPropertyName = $true)] [Int64] ${Limit} ) Process { 'Creating PSCustomObject: TorizonPlatformAPI => TorizonPlatformAPIPaginationResultExternalPackage' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug if ($null -eq $Total) { throw "invalid value for 'Total', 'Total' cannot be null." } if ($null -eq $Offset) { throw "invalid value for 'Offset', 'Offset' cannot be null." } if ($null -eq $Limit) { throw "invalid value for 'Limit', 'Limit' cannot be null." } $PSO = [PSCustomObject]@{ "values" = ${Values} "total" = ${Total} "offset" = ${Offset} "limit" = ${Limit} } return $PSO } } <# .SYNOPSIS Convert from JSON to PaginationResultExternalPackage<PSCustomObject> .DESCRIPTION Convert from JSON to PaginationResultExternalPackage<PSCustomObject> .PARAMETER Json Json object .OUTPUTS PaginationResultExternalPackage<PSCustomObject> #> function ConvertFrom-TorizonPlatformAPIJsonToPaginationResultExternalPackage { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: TorizonPlatformAPI => TorizonPlatformAPIPaginationResultExternalPackage' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in TorizonPlatformAPIPaginationResultExternalPackage $AllProperties = ("values", "total", "offset", "limit") foreach ($name in $JsonParameters.PsObject.Properties.Name) { if (!($AllProperties.Contains($name))) { throw "Error! JSON key '$name' not found in the properties: $($AllProperties)" } } If ([string]::IsNullOrEmpty($Json) -or $Json -eq "{}") { # empty json throw "Error! Empty JSON cannot be serialized due to the required property 'total' missing." } if (!([bool]($JsonParameters.PSobject.Properties.name -match "total"))) { throw "Error! JSON cannot be serialized due to the required property 'total' missing." } else { $Total = $JsonParameters.PSobject.Properties["total"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "offset"))) { throw "Error! JSON cannot be serialized due to the required property 'offset' missing." } else { $Offset = $JsonParameters.PSobject.Properties["offset"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "limit"))) { throw "Error! JSON cannot be serialized due to the required property 'limit' missing." } else { $Limit = $JsonParameters.PSobject.Properties["limit"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "values"))) { #optional property not found $Values = $null } else { $Values = $JsonParameters.PSobject.Properties["values"].value } $PSO = [PSCustomObject]@{ "values" = ${Values} "total" = ${Total} "offset" = ${Offset} "limit" = ${Limit} } return $PSO } } |