/* Options: Date: 2024-11-21 12:35:41 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: CheckCompanyUserExists.* //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="/administrators/exists", Verbs="GET") @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) public static class CheckCompanyUserExists implements IReturn { /** * The email to the administrator. */ @ApiMember(Description="The email to the administrator.") public String Email = null; public String getEmail() { return Email; } public CheckCompanyUserExists setEmail(String value) { this.Email = value; return this; } private static Object responseType = CheckCompanyUserExistsResponse.class; public Object getResponseType() { return responseType; } } public static class CheckCompanyUserExistsResponse { public Boolean Exists = null; public String Message = null; public Boolean isExists() { return Exists; } public CheckCompanyUserExistsResponse setExists(Boolean value) { this.Exists = value; return this; } public String getMessage() { return Message; } public CheckCompanyUserExistsResponse setMessage(String value) { this.Message = value; return this; } } }