/* Options: Date: 2026-01-12 04:53:47 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://p4.smartdatasolutions.eu //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: Status.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export interface IGet { } export class Generic { /** @description Api-key. Used to provide credentials to the api. Can also be provided through the request headers with key: X-API-KEY */ // @ApiMember(DataType="String", Description="Api-key. Used to provide credentials to the api. Can also be provided through the request headers with key: X-API-KEY", IsRequired=true, Name="ApiKey") public apiKey: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class StatusResponse { public result: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/status") export class Status extends Generic implements IReturn, IGet { public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } public getTypeName() { return 'Status'; } public getMethod() { return 'GET'; } public createResponse() { return new StatusResponse(); } }