/* Options: Date: 2026-03-22 22:16:01 Version: 8.70 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://fbihtaapi.bettor.webhop.biz //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: FindProductInstances.* //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="/productInstances", Verbs="GET") open class FindProductInstances : IReturn> { open var id:String? = null open var qry:String? = null open var currentPage:Int? = null open var pageSize:Int? = null companion object { private val responseType = object : TypeToken>(){}.type } override fun getResponseType(): Any? = FindProductInstances.responseType } open class PaginatedResult { @SerializedName("data") open var Data:ArrayList? = null open var currentPage:Int? = null open var pageSize:Int? = null open var totalItems:Long? = null open var totalPages:Long? = null }