/* Options: Date: 2025-05-24 09:38:31 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: RecoverPassword.* //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 { /** * Reset an account's password using the token sent via email */ @Route(Path="/auth/recover", Verbs="POST") @Api(Description="Reset an account's password using the token sent via email") public static class RecoverPassword implements IReturnVoid, IPost { /** * The email address being recovered */ @ApiMember(Description="The email address being recovered") public String emailAddress = null; /** * The token sent via email */ @ApiMember(Description="The token sent via email") public String token = null; /** * New Password */ @ApiMember(Description="New Password") public String newPassword = null; public String getEmailAddress() { return emailAddress; } public RecoverPassword setEmailAddress(String value) { this.emailAddress = value; return this; } public String getToken() { return token; } public RecoverPassword setToken(String value) { this.token = value; return this; } public String getNewPassword() { return newPassword; } public RecoverPassword setNewPassword(String value) { this.newPassword = value; return this; } } }