/* Options: Date: 2024-12-23 12:27:07 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: ProfileUpdateMobilePhoneRequest.* //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-finish", Verbs="PUT") public static class ProfileUpdateMobilePhoneRequest implements IReturn, IPut { public String token = null; public String shortCode = null; public String getToken() { return token; } public ProfileUpdateMobilePhoneRequest setToken(String value) { this.token = value; return this; } public String getShortCode() { return shortCode; } public ProfileUpdateMobilePhoneRequest setShortCode(String value) { this.shortCode = value; return this; } private static Object responseType = ProfileUpdateMobilePhoneResponse.class; public Object getResponseType() { return responseType; } } public static class ProfileUpdateMobilePhoneResponse { public String verifiedMobilePhone = null; public String getVerifiedMobilePhone() { return verifiedMobilePhone; } public ProfileUpdateMobilePhoneResponse setVerifiedMobilePhone(String value) { this.verifiedMobilePhone = value; return this; } } }