/* Options: Date: 2025-05-06 19:12:21 Version: 8.70 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://unstable-consumer-api.brovs.com //Package: //GlobalNamespace: ConsumerApi //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: MobilePhoneSendShortCodeRequest.* //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="/recovery/mobile/send_short_code", Verbs="POST") public static class MobilePhoneSendShortCodeRequest implements IReturn, IPost { public String verifiedToken = null; @Validate(Validator="NotEmpty") public String phoneNumber = null; public Locale locale = null; public String getVerifiedToken() { return verifiedToken; } public MobilePhoneSendShortCodeRequest setVerifiedToken(String value) { this.verifiedToken = value; return this; } public String getPhoneNumber() { return phoneNumber; } public MobilePhoneSendShortCodeRequest setPhoneNumber(String value) { this.phoneNumber = value; return this; } public Locale getLocale() { return locale; } public MobilePhoneSendShortCodeRequest setLocale(Locale value) { this.locale = value; return this; } private static Object responseType = MobilePhoneSendShortCodeResponse.class; public Object getResponseType() { return responseType; } } public static class MobilePhoneSendShortCodeResponse { public String verifiedToken = null; public String getVerifiedToken() { return verifiedToken; } public MobilePhoneSendShortCodeResponse setVerifiedToken(String value) { this.verifiedToken = value; return this; } } public static enum Locale { EnUs, NbNo; } }