/* Options: Date: 2024-11-21 10:43:17 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: GetCurrentMicroAppRequest.* //ExcludeTypes: //DefaultImports: */ export interface IHasTenantKey { tenantKey: string; } export class MicroApp { public id: number; public name: string; public key: string; public version: number; public current: boolean; public production: boolean; // @Ignore() public manifestUrl: string; // @Ignore() public url: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/current/{Key}/{TenantKey}") export class GetCurrentMicroAppRequest implements IReturn, IHasTenantKey { public key: string; public tenantKey: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetCurrentMicroAppRequest'; } public getMethod() { return 'GET'; } public createResponse() { return new MicroApp(); } }