/* Options: Date: 2026-04-04 01:20:55 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetSuiteDataForLicensee.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* /** * Gets the suite data for a particular licensee */ @Route(Path="/suitedata") @Api(Description="Gets the suite data for a particular licensee") open class GetSuiteDataForLicensee : IReturn { /** * The suite id */ @ApiMember(Description="The suite id", Name="Suite Id") open var SuiteId:UUID? = null /** * The id of the licensee */ @ApiMember(Description="The id of the licensee", Name="LicenseeId") open var LicenseeId:UUID? = null companion object { private val responseType = GetSuiteDataResponse::class.java } override fun getResponseType(): Any? = GetSuiteDataForLicensee.responseType } @ApiResponse(Description="Suite Appliance Data") open class GetSuiteDataResponse { open var SuiteApplianceLicenseeId:UUID? = null open var DomainName:String? = null open var SkinName:String? = null open var LicenseeConnectionId:UUID? = null open var LicenseeContactId:UUID? = null open var LicenseeContactName:String? = null open var IsBrandedURL:Boolean? = null open var ResponseStatus:ResponseStatus? = null }