/* Options: Date: 2025-12-06 06:38:21 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://s4w1.api.sbbet.ath.cx //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetConfiguredRTP.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class RTPResponse { public totalRTP: number; public mainGame: number; public superWin: number; public globalCodePot: number; public localCodePot: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/qry/rtp/configured") export class GetConfiguredRTP implements IReturn { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetConfiguredRTP'; } public getMethod() { return 'POST'; } public createResponse() { return new RTPResponse(); } }