/* Options: Date: 2025-11-09 11:07:54 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: GetRoundIntegrity.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* import com.google.gson.annotations.* import com.google.gson.reflect.* @Route(Path="/qry/rounds/integrity") open class GetRoundIntegrity : IReturn { open var roundId:String? = null companion object { private val responseType = RoundIntegrityCheckResult::class.java } override fun getResponseType(): Any? = GetRoundIntegrity.responseType } open class RoundIntegrityCheckResult { open var status:CheckStatus? = null open var extraWinnings:BigDecimal? = null open var betCount:Int? = null open var jpInfo:Jackpot5Info? = null } open class Ref { open var id:String? = null @SerializedName("val") open var Val:String? = null } open class Origin { open var application:BettingApp? = null open var ip:String? = null open var organization:RefEx? = null open var region:Ref? = null open var locationGroup:Ref? = null open var location:RefEx? = null open var device:RefEx? = null open var clerk:Ref? = null } open class Jackpot5Info { open var isHit:Boolean? = null open var amountAccumulated:BigDecimal? = null open var amountAwarded:BigDecimal? = null open var nrOfWinners:Int? = null open var jackPot5Winners:ArrayList? = null } enum class CheckStatus(val value:Int) { @SerializedName("1") Ok(1), @SerializedName("2") Error(2), } open class BettingApp { open var name:String? = null open var version:String? = null } open class RefEx : Ref() { @SerializedName("data") open var Data:RecordDictionary? = null } open class RecordDictionary : HashMap() { } open class JackPot5Winner { open var betId:String? = null open var nrOfCombinations:Int? = null open var winningsAmount:BigDecimal? = null open var origin:Origin? = null open var bettor:Ref? = null open var payload:HashMap? = null }