/* Options: Date: 2025-05-04 20:19:12 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: RecoverPassword.* //ExcludeTypes: //DefaultImports: */ export class NodeParameterMap { [key:string] : NodeParameter; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export interface IReturnVoid { createResponse(): void; } export interface IPost { } /** @description Reset an account's password using the token sent via email */ // @Route("/auth/recover", "POST") // @Api(Description="Reset an account's password using the token sent via email") export class RecoverPassword implements IReturnVoid, IPost { /** @description The email address being recovered */ // @ApiMember(Description="The email address being recovered") public emailAddress: string; /** @description The token sent via email */ // @ApiMember(Description="The token sent via email") public token: string; /** @description New Password */ // @ApiMember(Description="New Password") public newPassword: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'RecoverPassword'; } public getMethod() { return 'POST'; } public createResponse() {} }