/* Options: Date: 2025-11-09 10:55:42 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: GetLocalCodePotConfigs.* //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/lcp/configs") open class GetLocalCodePotConfigs : IReturn { companion object { private val responseType = LocalCodePotConfigurations::class.java } override fun getResponseType(): Any? = GetLocalCodePotConfigs.responseType } open class LocalCodePotConfigurations { open var id:String? = null open var configurations:HashMap? = null } open class LCPConfiguration { open var isActive:Boolean? = null open var interval:ThresholdInterval? = null open var pct:BigDecimal? = null } open class ThresholdInterval { open var start:BigDecimal? = null open var end:BigDecimal? = null } open class Configuration { open var id:String? = null open var name:String? = null open var cfg:LCPConfiguration? = null }