/* Options: Date: 2025-12-06 07:07:29 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://backoffice-api.brovs.com //GlobalNamespace: BackofficeApi //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ForgotPasswordRequest.* //ExcludeTypes: //DefaultImports: */ export module BackofficeApi { // @ts-nocheck export interface IReturn { createResponse(): T; } export interface IPost { } export class ForgotPasswordResponse { public sentEmailWithRequestId: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/login/forgot_password", "POST") export class ForgotPasswordRequest implements IReturn, IPost { public mobilePhone: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'ForgotPasswordRequest'; } public getMethod() { return 'POST'; } public createResponse() { return new ForgotPasswordResponse(); } } }