/* Options: Date: 2025-11-09 10:58:07 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: GetCustomThresholds.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class Pool { public id: number; public name: string; public coefficient: number; public rtp: number; public threshold: number; public balance: number; public rrtp: number; public rBalance: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class Pool { public id: number; public name: string; public rtp: number; public reserveRTP: number; public totalRTP: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class Pool { public id: number; public name: string; public treshold: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class CustomThresholds { public id: string; public pools: Pool[]; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/qry/configurations/thresholds/custom", "GET") export class GetCustomThresholds implements IReturn { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetCustomThresholds'; } public getMethod() { return 'GET'; } public createResponse() { return new CustomThresholds(); } }