/* Options: Date: 2025-11-09 11:08:25 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://s4w2.api.bettor.cc //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetCustomThresholds.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* @Route(Path="/qry/configurations/thresholds/custom", Verbs="GET") open class GetCustomThresholds : IReturn { companion object { private val responseType = CustomThresholds::class.java } override fun getResponseType(): Any? = GetCustomThresholds.responseType } open class CustomThresholds { open var id:String? = null open var pools:ArrayList? = null } open class Pool { open var id:Int? = null open var name:String? = null open var coefficient:BigDecimal? = null open var rtp:BigDecimal? = null open var threshold:BigDecimal? = null open var balance:BigDecimal? = null open var rrtp:BigDecimal? = null open var rBalance:BigDecimal? = null } open class Pool { open var id:Int? = null open var name:String? = null open var rtp:BigDecimal? = null open var reserveRTP:BigDecimal? = null open var totalRTP:BigDecimal? = null } open class Pool { open var id:Int? = null open var name:String? = null open var treshold:BigDecimal? = null }