Model/UpdateCreateResult.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 Affected No description available. .PARAMETER NotAffected No description available. .OUTPUTS UpdateCreateResult<PSCustomObject> #> function Initialize-TorizonPlatformAPIUpdateCreateResult { [CmdletBinding()] Param ( [Parameter(Position = 0, ValueFromPipelineByPropertyName = $true)] [PSCustomObject[]] ${Affected}, [Parameter(Position = 1, ValueFromPipelineByPropertyName = $true)] [PSCustomObject[]] ${NotAffected} ) Process { 'Creating PSCustomObject: TorizonPlatformAPI => TorizonPlatformAPIUpdateCreateResult' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $PSO = [PSCustomObject]@{ "affected" = ${Affected} "notAffected" = ${NotAffected} } return $PSO } } <# .SYNOPSIS Convert from JSON to UpdateCreateResult<PSCustomObject> .DESCRIPTION Convert from JSON to UpdateCreateResult<PSCustomObject> .PARAMETER Json Json object .OUTPUTS UpdateCreateResult<PSCustomObject> #> function ConvertFrom-TorizonPlatformAPIJsonToUpdateCreateResult { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: TorizonPlatformAPI => TorizonPlatformAPIUpdateCreateResult' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in TorizonPlatformAPIUpdateCreateResult $AllProperties = ("affected", "notAffected") 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 "affected"))) { #optional property not found $Affected = $null } else { $Affected = $JsonParameters.PSobject.Properties["affected"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "notAffected"))) { #optional property not found $NotAffected = $null } else { $NotAffected = $JsonParameters.PSobject.Properties["notAffected"].value } $PSO = [PSCustomObject]@{ "affected" = ${Affected} "notAffected" = ${NotAffected} } return $PSO } } |