/* Options: Date: 2025-05-04 23:54:28 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: ForgotPassword.* //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 dtos { /** * Sends a password recovery email to the email address on file */ @Route(Path="/auth/forgot-password", Verbs="POST") @Api(Description="Sends a password recovery email to the email address on file") public static class ForgotPassword implements IReturnVoid, IPost { /** * The email address associated with the account you want to recover */ @ApiMember(Description="The email address associated with the account you want to recover") public String emailAddress = null; public String getEmailAddress() { return emailAddress; } public ForgotPassword setEmailAddress(String value) { this.emailAddress = value; return this; } } }