/* Options: Date: 2025-12-06 11:13:46 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://sfgboxapi.dev.scadsoftware.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: VarietiesLookup.* //ExcludeTypes: //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.*; public class dtos { @Route(Path="/varieties", Verbs="GET") @DataContract public static class VarietiesLookup implements IReturn> { @DataMember(Order=2) public Long tenantsId = null; @DataMember(Order=3) public Long zonesId = null; @DataMember(Order=4) public Long cropsId = null; @DataMember(Order=5) public String name = null; @DataMember(Order=6) public String about = null; @DataMember(Order=7) public Integer heightsCm = null; @DataMember(Order=8) public Boolean needSupport = null; @DataMember(Order=9) public Boolean needStakes = null; @DataMember(Order=10) public Boolean needTrellis = null; public Long getTenantsId() { return tenantsId; } public VarietiesLookup setTenantsId(Long value) { this.tenantsId = value; return this; } public Long getZonesId() { return zonesId; } public VarietiesLookup setZonesId(Long value) { this.zonesId = value; return this; } public Long getCropsId() { return cropsId; } public VarietiesLookup setCropsId(Long value) { this.cropsId = value; return this; } public String getName() { return name; } public VarietiesLookup setName(String value) { this.name = value; return this; } public String getAbout() { return about; } public VarietiesLookup setAbout(String value) { this.about = value; return this; } public Integer getHeightsCm() { return heightsCm; } public VarietiesLookup setHeightsCm(Integer value) { this.heightsCm = value; return this; } public Boolean isNeedSupport() { return needSupport; } public VarietiesLookup setNeedSupport(Boolean value) { this.needSupport = value; return this; } public Boolean isNeedStakes() { return needStakes; } public VarietiesLookup setNeedStakes(Boolean value) { this.needStakes = value; return this; } public Boolean isNeedTrellis() { return needTrellis; } public VarietiesLookup setNeedTrellis(Boolean value) { this.needTrellis = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } }