/* Options: Date: 2024-05-19 02:37:54 Version: 6.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://apps.harbourassist.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ResolveMicroAppRequest.* //ExcludeTypes: //DefaultImports: */ export interface IHasTenantKey { tenantKey: string; } // @Route("/app/resolve/{Key}") export class ResolveMicroAppRequest implements IHasTenantKey { public key: string; public query: string; public tenantKey: string; public additionalParams: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'ResolveMicroAppRequest'; } public getMethod() { return 'GET'; } public createResponse() {} }