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