/* Options: Date: 2025-12-06 05:27:31 Version: 8.70 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.sbbet.ath.cx //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetLookup.* //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/lookups") open class GetLookup : IReturn { open var id:String? = null companion object { private val responseType = Lookup::class.java } override fun getResponseType(): Any? = GetLookup.responseType } open class Lookup { open var id:String? = null @SerializedName("data") open var Data:ArrayList? = null } open class Ref { open var id:String? = null @SerializedName("val") open var Val:String? = null } open class RefEx : Ref() { @SerializedName("data") open var Data:RecordDictionary? = null } open class RecordDictionary : HashMap() { }