/* Options: Date: 2025-11-09 10:58:05 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://s4w2.api.bettor.cc //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(); } }