/* Options: Date: 2025-07-17 23:12:26 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://portal-api.migrantleap.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: UpdateProfileRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class UpdateProfileResponse { public responseCode: number; public responseMessage: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/update-profile", "POST") export class UpdateProfileRequest implements IReturn { public firstName?: string; public lastName?: string; public country: string; public language: string; public birthDate?: string; public address?: string; public address2?: string; public city?: string; public state?: string; public zipCode?: string; public phoneNumber?: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'UpdateProfileRequest'; } public getMethod() { return 'POST'; } public createResponse() { return new UpdateProfileResponse(); } }