Model/LogConfig.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 To No description available. .PARAMETER Detail No description available. .PARAMETER Destination No description available. .OUTPUTS LogConfig<PSCustomObject> #> function New-SS6LogConfig { [CmdletBinding()] Param ( [Parameter(Position = 0, ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${To}, [Parameter(Position = 1, ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${Detail}, [Parameter(Position = 2, ValueFromPipelineByPropertyName = $true)] [String] ${Destination} ) Process { 'Creating object: SS6AdminModule => SS6LogConfig' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $PSO = [PSCustomObject]@{ "to" = ${To} "detail" = ${Detail} "destination" = ${Destination} } return $PSO } } |