Model/SimpleDeviceNotAffectedInfo.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 Id
No description available.
.PARAMETER Name
No description available.
.PARAMETER EcuErrors
No description available.
.OUTPUTS

SimpleDeviceNotAffectedInfo<PSCustomObject>
#>


function Initialize-TorizonPlatformAPISimpleDeviceNotAffectedInfo {
    [CmdletBinding()]
    Param (
        [Parameter(Position = 0, ValueFromPipelineByPropertyName = $true)]
        [String]
        ${Id},
        [Parameter(Position = 1, ValueFromPipelineByPropertyName = $true)]
        [String]
        ${Name},
        [Parameter(Position = 2, ValueFromPipelineByPropertyName = $true)]
        [System.Collections.Hashtable]
        ${EcuErrors}
    )

    Process {
        'Creating PSCustomObject: TorizonPlatformAPI => TorizonPlatformAPISimpleDeviceNotAffectedInfo' | Write-Debug
        $PSBoundParameters | Out-DebugParameter | Write-Debug

        if ($null -eq $Id) {
            throw "invalid value for 'Id', 'Id' cannot be null."
        }

        if ($null -eq $Name) {
            throw "invalid value for 'Name', 'Name' cannot be null."
        }

        if ($null -eq $EcuErrors) {
            throw "invalid value for 'EcuErrors', 'EcuErrors' cannot be null."
        }


        $PSO = [PSCustomObject]@{
            "id" = ${Id}
            "name" = ${Name}
            "ecuErrors" = ${EcuErrors}
        }


        return $PSO
    }
}

<#
.SYNOPSIS

Convert from JSON to SimpleDeviceNotAffectedInfo<PSCustomObject>

.DESCRIPTION

Convert from JSON to SimpleDeviceNotAffectedInfo<PSCustomObject>

.PARAMETER Json

Json object

.OUTPUTS

SimpleDeviceNotAffectedInfo<PSCustomObject>
#>

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

    Process {
        'Converting JSON to PSCustomObject: TorizonPlatformAPI => TorizonPlatformAPISimpleDeviceNotAffectedInfo' | Write-Debug
        $PSBoundParameters | Out-DebugParameter | Write-Debug

        $JsonParameters = ConvertFrom-Json -InputObject $Json

        # check if Json contains properties not defined in TorizonPlatformAPISimpleDeviceNotAffectedInfo
        $AllProperties = ("id", "name", "ecuErrors")
        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 'id' missing."
        }

        if (!([bool]($JsonParameters.PSobject.Properties.name -match "id"))) {
            throw "Error! JSON cannot be serialized due to the required property 'id' missing."
        } else {
            $Id = $JsonParameters.PSobject.Properties["id"].value
        }

        if (!([bool]($JsonParameters.PSobject.Properties.name -match "name"))) {
            throw "Error! JSON cannot be serialized due to the required property 'name' missing."
        } else {
            $Name = $JsonParameters.PSobject.Properties["name"].value
        }

        if (!([bool]($JsonParameters.PSobject.Properties.name -match "ecuErrors"))) {
            throw "Error! JSON cannot be serialized due to the required property 'ecuErrors' missing."
        } else {
            $EcuErrors = $JsonParameters.PSobject.Properties["ecuErrors"].value
        }

        $PSO = [PSCustomObject]@{
            "id" = ${Id}
            "name" = ${Name}
            "ecuErrors" = ${EcuErrors}
        }

        return $PSO
    }

}