/* Options: Date: 2024-12-23 11:36:20 Version: 8.0 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: ProfileUpdateMobilePhoneSendVerificationSmsRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class ConsumerApi { @Route(Path="/profile/update-mobile-phone-start", Verbs="PUT") public static class ProfileUpdateMobilePhoneSendVerificationSmsRequest implements IReturn, IPut { public String mobilePhone = null; public String getMobilePhone() { return mobilePhone; } public ProfileUpdateMobilePhoneSendVerificationSmsRequest setMobilePhone(String value) { this.mobilePhone = value; return this; } private static Object responseType = ProfileUpdateMobilePhoneSendVerificationSmsResponse.class; public Object getResponseType() { return responseType; } } public static class ProfileUpdateMobilePhoneSendVerificationSmsResponse { public String profileUpdateMobilePhoneRequestToken = null; public String sentSmsWithRequestId = null; public String getProfileUpdateMobilePhoneRequestToken() { return profileUpdateMobilePhoneRequestToken; } public ProfileUpdateMobilePhoneSendVerificationSmsResponse setProfileUpdateMobilePhoneRequestToken(String value) { this.profileUpdateMobilePhoneRequestToken = value; return this; } public String getSentSmsWithRequestId() { return sentSmsWithRequestId; } public ProfileUpdateMobilePhoneSendVerificationSmsResponse setSentSmsWithRequestId(String value) { this.sentSmsWithRequestId = value; return this; } } }