Model/InlineObject.ps1
# # SMServer V6 # Syncplify.me Server! REST API # Version: 1.0.0 # Generated by OpenAPI Generator: https://openapi-generator.tech # <# .SYNOPSIS No summary available. .DESCRIPTION No description available. .PARAMETER Code No description available. .OUTPUTS InlineObject<PSCustomObject> #> function New-SS6InlineObject { [CmdletBinding()] Param ( [Parameter(Position = 0, ValueFromPipelineByPropertyName = $true)] [String] ${Code} ) Process { 'Creating object: SS6AdminModule => SS6InlineObject' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $PSO = [PSCustomObject]@{ "code" = ${Code} } return $PSO } } |