/* Options: Date: 2025-05-04 23:59:14 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: ChangeMyPassword.* //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 Update the authenticated user's password */ // @Route("/my-password", "POST") // @Api(Description="Update the authenticated user's password") export class ChangeMyPassword implements IReturnVoid, IPost { /** @description The new password for this user */ // @ApiMember(Description="The new password for this user") public newPassword: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'ChangeMyPassword'; } public getMethod() { return 'POST'; } public createResponse() {} }