/* Options: Date: 2026-06-22 21:35:14 Version: 10.06 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: GetRecentWinsConfig.* //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/config/recent-wins") open class GetRecentWinsConfig : IReturn { companion object { private val responseType = RecentWinsConfiguration::class.java } override fun getResponseType(): Any? = GetRecentWinsConfig.responseType } open class RecentWinsConfiguration : RecentWinsConfiguration() { open var id:String? = null } open class RecentWinsConfiguration { open var displayMode:RecentWinsDisplayMode? = null open var threshold:BigDecimal? = null open var maxSize:Int? = null open var winIntervals:RecordList? = null } open class RecordList : ArrayList() { } enum class RecentWinsDisplayMode(val value:Int) { @SerializedName("0") Queue(0), @SerializedName("1") Intervals(1), } open class WinInterval { open var start:BigDecimal? = null open var end:BigDecimal? = null open var duration:TimeSpan? = null }