/* Options: Date: 2025-11-09 11:08:24 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: GetConfiguredRTP.* //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/rtp/configured") open class GetConfiguredRTP : IReturn { companion object { private val responseType = RTPResponse::class.java } override fun getResponseType(): Any? = GetConfiguredRTP.responseType } open class RTPResponse { open var totalRTP:BigDecimal? = null open var mainGame:BigDecimal? = null open var superWin:BigDecimal? = null open var globalCodePot:BigDecimal? = null open var localCodePot:BigDecimal? = null }