Model/Tuple2DeviceTagIdDeviceTagValue.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 Var1
No description available.
.PARAMETER Var2
No description available.
.OUTPUTS

Tuple2DeviceTagIdDeviceTagValue<PSCustomObject>
#>


function Initialize-TorizonPlatformAPITuple2DeviceTagIdDeviceTagValue {
    [CmdletBinding()]
    Param (
        [Parameter(Position = 0, ValueFromPipelineByPropertyName = $true)]
        [String]
        ${Var1},
        [Parameter(Position = 1, ValueFromPipelineByPropertyName = $true)]
        [String]
        ${Var2}
    )

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

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

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


        $PSO = [PSCustomObject]@{
            "_1" = ${Var1}
            "_2" = ${Var2}
        }


        return $PSO
    }
}

<#
.SYNOPSIS

Convert from JSON to Tuple2DeviceTagIdDeviceTagValue<PSCustomObject>

.DESCRIPTION

Convert from JSON to Tuple2DeviceTagIdDeviceTagValue<PSCustomObject>

.PARAMETER Json

Json object

.OUTPUTS

Tuple2DeviceTagIdDeviceTagValue<PSCustomObject>
#>

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

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

        $JsonParameters = ConvertFrom-Json -InputObject $Json

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

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

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

        $PSO = [PSCustomObject]@{
            "_1" = ${Var1}
            "_2" = ${Var2}
        }

        return $PSO
    }

}