/* Options: Date: 2025-12-06 05:20:45 Version: 8.70 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.sbbet.ath.cx //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetE2EProgress.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class E2EProgress { public id: string; public isActive: boolean; public slipsTotal: number; public slipsSubmitted: number; public lastUTCChange: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/qry/e2e/progress", "GET") export class GetE2EProgress implements IReturn { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetE2EProgress'; } public getMethod() { return 'GET'; } public createResponse() { return new E2EProgress(); } }