/* Options: Date: 2024-07-03 12:58:08 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: LicenseCheckDomain.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/licenses/checkdomain/", Verbs="GET") @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) open class LicenseCheckDomain { /** * The domain name you want to check */ @ApiMember(DataType="string", Description="The domain name you want to check", IsRequired=true) var DomainName:String? = null var ResponseStatus:ResponseStatus? = null }