/* Options: Date: 2025-05-04 22:00:28 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: UpdateUserInfo.* //ExcludeTypes: //DefaultImports: */ export class NodeParameterMap { [key:string] : NodeParameter; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export interface IReturn { createResponse(): T; } export interface IPatch { } export class AppUserInfo { /** @description The user's first name */ // @ApiMember(Description="The user's first name") public firstName: string; /** @description The user's last name */ // @ApiMember(Description="The user's last name") public lastName: string; /** @description Shortcut to the user's full name */ // @ApiMember(Description="Shortcut to the user's full name") public name: string; /** @description The URL to the user's avatar */ // @ApiMember(Description="The URL to the user's avatar") public avatarUrl: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } /** @description Updates the user's info */ // @Route("/app/user-info", "PATCH") // @Api(Description="Updates the user's info") export class UpdateUserInfo implements IReturn, IPatch { /** @description The new first name */ // @ApiMember(Description="The new first name") public firstName: string; /** @description The new last name */ // @ApiMember(Description="The new last name") public lastName: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'UpdateUserInfo'; } public getMethod() { return 'PATCH'; } public createResponse() { return new AppUserInfo(); } }