/* Options: Date: 2024-12-23 11:55:50 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: EmailVerificationWithCodeRequest.* //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="/signup/verify-email", Verbs="POST") public static class EmailVerificationWithCodeRequest implements IReturn, IPost { public String shortCode = null; public String token = null; public String getShortCode() { return shortCode; } public EmailVerificationWithCodeRequest setShortCode(String value) { this.shortCode = value; return this; } public String getToken() { return token; } public EmailVerificationWithCodeRequest setToken(String value) { this.token = value; return this; } private static Object responseType = EmailVerificationWithCodeResponse.class; public Object getResponseType() { return responseType; } } public static class EmailVerificationWithCodeResponse { public String verifiedEmail = null; public String getVerifiedEmail() { return verifiedEmail; } public EmailVerificationWithCodeResponse setVerifiedEmail(String value) { this.verifiedEmail = value; return this; } } }