/* Options: Date: 2026-01-29 14:58:39 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://consumer-api.brovs.com //Package: //GlobalNamespace: ConsumerApi //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: LoginWithMobileNumberSendShortCodeRequest.* //ExcludeTypes: //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.*; public class ConsumerApi { @Route(Path="/login/mobile/send_short_code", Verbs="POST") public static class LoginWithMobileNumberSendShortCodeRequest implements IReturn, IPost { @Validate(Validator="NotEmpty") public String mobileNumber = null; public Locale locale = null; public String getMobileNumber() { return mobileNumber; } public LoginWithMobileNumberSendShortCodeRequest setMobileNumber(String value) { this.mobileNumber = value; return this; } public Locale getLocale() { return locale; } public LoginWithMobileNumberSendShortCodeRequest setLocale(Locale value) { this.locale = value; return this; } private static Object responseType = LoginWithMobileNumberSendShortCodeResponse.class; public Object getResponseType() { return responseType; } } public static class LoginWithMobileNumberSendShortCodeResponse { public String token = null; public String sentSmsWithTransactionId = null; public String getToken() { return token; } public LoginWithMobileNumberSendShortCodeResponse setToken(String value) { this.token = value; return this; } public String getSentSmsWithTransactionId() { return sentSmsWithTransactionId; } public LoginWithMobileNumberSendShortCodeResponse setSentSmsWithTransactionId(String value) { this.sentSmsWithTransactionId = value; return this; } } public static enum Locale { EnUs, NbNo; } }