/* Options: Date: 2025-05-06 14:03:18 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-autoupdates-live.smartnewapis.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: LiveBeatRequest.* //ExcludeTypes: //DefaultImports: */ export class LiveBeatResult { public utcCachedLastBeat: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/system/LiveBeat", "GET POST") export class LiveBeatRequest implements IReturn { public nameOfThread: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'LiveBeatRequest'; } public getMethod() { return 'POST'; } public createResponse() { return new LiveBeatResult(); } }