Model/ChartStatistic.ps1

#
# Cloud Governance Api
# No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
# Version: 1.0
# Generated by OpenAPI Generator: https://openapi-generator.tech
#

<#
.SYNOPSIS

No summary available.

.DESCRIPTION

No description available.

.PARAMETER XAxis
No description available.

.PARAMETER YAxis
No description available.

.PARAMETER LegendSource
No description available.

.OUTPUTS

ChartStatistic<PSCustomObject>
#>


function New-ChartStatistic {
    [CmdletBinding()]
    Param (
        [Parameter(Position = 0, ValueFromPipelineByPropertyName = $true)]
        [PSCustomObject[]]
        ${XAxis},
        [Parameter(Position = 1, ValueFromPipelineByPropertyName = $true)]
        [PSCustomObject[]]
        ${YAxis},
        [Parameter(Position = 2, ValueFromPipelineByPropertyName = $true)]
        [PSCustomObject[]]
        ${LegendSource}
    )

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

        $PSO = [PSCustomObject]@{
            "xAxis" = ${XAxis}
            "yAxis" = ${YAxis}
            "legendSource" = ${LegendSource}
        }

        return $PSO
    }
}