Model/ContentMoveProfileMappings.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 ColumnMapping
No description available.

.PARAMETER ContentTypeMapping
No description available.

.PARAMETER UserMapping
No description available.

.PARAMETER LanguageMapping
No description available.

.OUTPUTS

ContentMoveProfileMappings<PSCustomObject>
#>


function New-ContentMoveProfileMappings {
    [CmdletBinding()]
    Param (
        [Parameter(Position = 0, ValueFromPipelineByPropertyName = $true)]
        [PSCustomObject]
        ${ColumnMapping},
        [Parameter(Position = 1, ValueFromPipelineByPropertyName = $true)]
        [PSCustomObject]
        ${ContentTypeMapping},
        [Parameter(Position = 2, ValueFromPipelineByPropertyName = $true)]
        [PSCustomObject]
        ${UserMapping},
        [Parameter(Position = 3, ValueFromPipelineByPropertyName = $true)]
        [PSCustomObject]
        ${LanguageMapping}
    )

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

        $PSO = [PSCustomObject]@{
            "columnMapping" = ${ColumnMapping}
            "contentTypeMapping" = ${ContentTypeMapping}
            "userMapping" = ${UserMapping}
            "languageMapping" = ${LanguageMapping}
        }

        return $PSO
    }
}