/* Options: Date: 2024-12-23 12:12:39 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: ProfileUpdateEmailSendVerificationLinkRequest.* //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-email-start", Verbs="PUT") public static class ProfileUpdateEmailSendVerificationLinkRequest implements IReturn, IPut { @Validate(Validator="NotEmpty") // @Validate(Validator="Email") public String email = null; public String getEmail() { return email; } public ProfileUpdateEmailSendVerificationLinkRequest setEmail(String value) { this.email = value; return this; } private static Object responseType = ProfileUpdateEmailSendVerificationLinkResponse.class; public Object getResponseType() { return responseType; } } public static class ProfileUpdateEmailSendVerificationLinkResponse { public String sentEmailWithRequestId = null; public String getSentEmailWithRequestId() { return sentEmailWithRequestId; } public ProfileUpdateEmailSendVerificationLinkResponse setSentEmailWithRequestId(String value) { this.sentEmailWithRequestId = value; return this; } } }