/* Options: Date: 2024-07-03 14:34:02 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: CheckSitePathValid.* //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="/companies/checksitepathvalid", Verbs="GET") @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) public static class CheckSitePathValid implements IReturn { /** * The sitepath to the company. */ @ApiMember(Description="The sitepath to the company.") public String SitePath = null; public String getSitePath() { return SitePath; } public CheckSitePathValid setSitePath(String value) { this.SitePath = value; return this; } private static Object responseType = CheckCompanySitePathIsValidResponse.class; public Object getResponseType() { return responseType; } } public static class CheckCompanySitePathIsValidResponse { public Boolean Valid = null; public String Message = null; public Boolean isValid() { return Valid; } public CheckCompanySitePathIsValidResponse setValid(Boolean value) { this.Valid = value; return this; } public String getMessage() { return Message; } public CheckCompanySitePathIsValidResponse setMessage(String value) { this.Message = value; return this; } } }