Model/ChangeWebContactSubRequest.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 Id No description available. .PARAMETER AssignTo No description available. .PARAMETER Reason No description available. .PARAMETER Status No description available. .PARAMETER StatusDescription No description available. .PARAMETER ProgressStatus No description available. .PARAMETER ContactChangeSettings No description available. .OUTPUTS ChangeWebContactSubRequest<PSCustomObject> #> function New-ChangeWebContactSubRequest { [CmdletBinding()] Param ( [Parameter(Position = 0, ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${Id}, [Parameter(Position = 1, ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${AssignTo}, [Parameter(Position = 2, ValueFromPipelineByPropertyName = $true)] [String] ${Reason}, [Parameter(Position = 3, ValueFromPipelineByPropertyName = $true)] [System.Nullable[Int32]] ${Status}, [Parameter(Position = 4, ValueFromPipelineByPropertyName = $true)] [String] ${StatusDescription}, [Parameter(Position = 5, ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${ProgressStatus}, [Parameter(Position = 6, ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${ContactChangeSettings} ) Process { 'Creating object: Cloud.Governance.Client => ChangeWebContactSubRequest' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $PSO = [PSCustomObject]@{ "id" = ${Id} "assignTo" = ${AssignTo} "reason" = ${Reason} "status" = ${Status} "statusDescription" = ${StatusDescription} "progressStatus" = ${ProgressStatus} "contactChangeSettings" = ${ContactChangeSettings} } return $PSO } } |