/* Options: Date: 2025-05-06 20:16:35 Version: 8.70 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://unstable-consumer-api.brovs.com //GlobalNamespace: ConsumerApi //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ProfileChangePasswordRequest.* //ExcludeTypes: //DefaultImports: */ export module ConsumerApi { // @ts-nocheck export interface IReturn { createResponse(): T; } export interface IPut { } export class ProfileChangePasswordResponse { public passwordScore?: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/profile/change-password", "PUT") export class ProfileChangePasswordRequest implements IReturn, IPut { public password: string; public passwordConfirmation: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'ProfileChangePasswordRequest'; } public getMethod() { return 'PUT'; } public createResponse() { return new ProfileChangePasswordResponse(); } } }