Model/ElectionProfile.ps1

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

<#
ElectionProfile<PSCustomObject>
#>


function New-ElectionProfile {
    [CmdletBinding()]
    Param (
        [Parameter(ValueFromPipelineByPropertyName = $true)]
        [String]
        ${Value},
        [Parameter(ValueFromPipelineByPropertyName = $true)]
        [String]
        ${Description},
        [Parameter(ValueFromPipelineByPropertyName = $true)]
        [String]
        ${ValueDisplayName},
        [Parameter(ValueFromPipelineByPropertyName = $true)]
        [String]
        ${ActivityId}
    )

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

        
        $PSO = [PSCustomObject]@{
            "Value" = ${Value}
            "Description" = ${Description}
            "ValueDisplayName" = ${ValueDisplayName}
            "ActivityId" = ${ActivityId}
        }

        return $PSO
    }
}

<#
ElectionProfile<PSCustomObject>
#>

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

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

        $JsonParameters = ConvertFrom-Json -InputObject $Json

        # check if Json contains properties not defined in ElectionProfile
        $AllProperties = $("Value", "Description", "ValueDisplayName", "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 "Value"))) { #optional property not found
            $Value = $null
        } else {
            $Value = $JsonParameters.PSobject.Properties["Value"].value
        }

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

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

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

        $PSO = [PSCustomObject]@{
            "Value" = ${Value}
            "Description" = ${Description}
            "ValueDisplayName" = ${ValueDisplayName}
            "ActivityId" = ${ActivityId}
        }

        return $PSO
    }

}