/* Options: Date: 2025-12-06 05:25:43 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: GetProductsLookup.* //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/products") open class GetProductsLookup : IReturn { companion object { private val responseType = ProductsLookup::class.java } override fun getResponseType(): Any? = GetProductsLookup.responseType } open class ProductsLookup { 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 ProductReference { open var id:String? = null open var value:String? = null open var category:String? = null open var productProvider:Ref? = null }