Model/ServiceType.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

Service type: * `SSH2` - is the SSH2 service type (also comprises all SSH2 subsystems, like SFTP, Shell, etc...) * `FTP` - is the service type for FTP and FTPES (STARTTLS) * `FTPS` - is the service type for FTPS (implicit SSL/TLS) * `HTTPS` - is the service type to serve the HTTPS protocol (for WebClient!)

.OUTPUTS

ServiceType<PSCustomObject>
#>


function New-SS6ServiceType {
    [CmdletBinding()]
    Param (
    )

    Process {
        'Creating object: SS6AdminModule => SS6ServiceType' | Write-Debug
        $PSBoundParameters | Out-DebugParameter | Write-Debug

        $PSO = [PSCustomObject]@{
        }

        return $PSO
    }
}