/* Options: Date: 2025-11-08 10:58:56 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: 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 LookupItem { open var id:String? = null open var value:String? = null open var tag:String? = null }