/* Options: Date: 2025-07-18 07:50:49 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: ProfileRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class ProfileResponse { public firstName?: string; public lastName?: string; public email: 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 memberId?: string; public responseCode: number; public responseMessage: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/profile", "GET") export class ProfileRequest implements IReturn { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'ProfileRequest'; } public getMethod() { return 'GET'; } public createResponse() { return new ProfileResponse(); } }