/* Options: Date: 2025-09-14 14:08:13 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bookmore.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: LicenseCheckDomain.* //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.* @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) open var DomainName:String? = null open var ResponseStatus:ResponseStatus? = null }