Model/HostKeyRequestFields.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 Name No description available. .PARAMETER Type No description available. .PARAMETER Bits No description available. .OUTPUTS HostKeyRequestFields<PSCustomObject> #> function New-SS6HostKeyRequestFields { [CmdletBinding()] Param ( [Parameter(Position = 0, ValueFromPipelineByPropertyName = $true)] [String] ${Name}, [Parameter(Position = 1, ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${Type}, [Parameter(Position = 2, ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${Bits} ) Process { 'Creating object: SS6AdminModule => SS6HostKeyRequestFields' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $PSO = [PSCustomObject]@{ "name" = ${Name} "type" = ${Type} "bits" = ${Bits} } return $PSO } } |