/* Options: Date: 2025-05-04 22:12:22 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: ForgotPassword.* //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 Sends a password recovery email to the email address on file */ // @Route("/auth/forgot-password", "POST") // @Api(Description="Sends a password recovery email to the email address on file") export class ForgotPassword implements IReturnVoid, IPost { /** @description 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 emailAddress: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'ForgotPassword'; } public getMethod() { return 'POST'; } public createResponse() {} }