/* Options: Date: 2025-05-05 03:37:40 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: RecoverPassword.* //ExcludeTypes: //InitializeCollections: False //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.* /** * 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") open class RecoverPassword : IReturnVoid, IPost { /** * The email address being recovered */ @ApiMember(Description="The email address being recovered") open var emailAddress:String? = null /** * The token sent via email */ @ApiMember(Description="The token sent via email") open var token:String? = null /** * New Password */ @ApiMember(Description="New Password") open var newPassword:String? = null }