/* Options: Date: 2025-12-06 06:09:08 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: GetProductInstancesLookup.* //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/productInstances") open class GetProductInstancesLookup : IReturn { companion object { private val responseType = ProductInstancesLookup::class.java } override fun getResponseType(): Any? = GetProductInstancesLookup.responseType } open class ProductInstancesLookup { 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 ProductInstanceRef { open var id:String? = null open var name:String? = null open var title:String? = null open var product:ProductReference? = null } open class ProductReference { open var id:String? = null open var value:String? = null open var category:String? = null open var productProvider:Ref? = null }