/* Options: Date: 2025-12-06 09:45:44 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://sfgboxapi.dev.scadsoftware.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CropsVarietiesLookup.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.* import java.util.* import net.servicestack.client.* import com.google.gson.annotations.* import com.google.gson.reflect.* @Route(Path="/cropsvarieties", Verbs="GET") open class CropsVarietiesLookup : IReturn> { var id:Long? = null var tenantsId:Long? = null var cropsId:Long? = null var cropsName:String? = null var latinName:String? = null var name:String? = null var about:String? = null var heightsCm:Int? = null var needStakes:Boolean? = null var needSupport:Boolean? = null var needTrellis:Boolean? = null var paging:Paging? = null companion object { private val responseType = object : TypeToken>(){}.type } override fun getResponseType(): Any? = CropsVarietiesLookup.responseType } open class Paging { var pageNumber:Int? = null var pageSize:Int? = null }