/* Options: Date: 2025-11-09 10:56:03 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: GetGlobalCodePotConfiguration.* //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/global-code-pot/config") open class GetGlobalCodePotConfiguration : IReturn { companion object { private val responseType = GlobalCodePotConfigurations::class.java } override fun getResponseType(): Any? = GetGlobalCodePotConfiguration.responseType } open class GlobalCodePotConfigurations { open var id:String? = null open var cfg:GCPConfiguration? = null } open class GCPConfiguration { open var isActive:Boolean? = null open var interval:ThresholdInterval? = null open var pct:BigDecimal? = null open var reservePct:BigDecimal? = null open var totalPct:BigDecimal? = null } open class ThresholdInterval { open var start:BigDecimal? = null open var end:BigDecimal? = null }