Model/InlineObject1.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 Filename No description available. .OUTPUTS InlineObject1<PSCustomObject> #> function New-SS6InlineObject1 { [CmdletBinding()] Param ( [Parameter(Position = 0, ValueFromPipelineByPropertyName = $true, Mandatory = $true)] [System.IO.FileInfo] ${Filename} ) Process { 'Creating object: SS6AdminModule => SS6InlineObject1' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $PSO = [PSCustomObject]@{ "filename" = ${Filename} } return $PSO } } |