/* Options: Date: 2025-12-06 13:03:37 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://etc-api.vsmlab.vn //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: UserUpdateProfileRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class BaseResponse implements IResponseRequest { public code: number; public message?: string; public data?: CurrentUserResponse; public constructor(init?: Partial>) { (Object as any).assign(this, init); } } // @Route("/users/update-profile", "POST") export class UserUpdateProfileRequest implements IReturn> { public fullName: string; public phone: string; public birthday: string; public avatar: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'UserUpdateProfileRequest'; } public getMethod() { return 'POST'; } public createResponse() { return new BaseResponse(); } }