/* Options: Date: 2026-09-01 02:39:39 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api-stage.smartfarmertech.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: ProductsRecipesAutoQueryDelete.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { public static class ProductsRecipesAutoQueryDelete implements IReturnVoid, IDeleteDb { @DataMember(Order=1) public Long id = null; @DataMember(Order=7) public ResponseStatus responseStatus = null; public Long getId() { return id; } public ProductsRecipesAutoQueryDelete setId(Long value) { this.id = value; return this; } public ResponseStatus getResponseStatus() { return responseStatus; } public ProductsRecipesAutoQueryDelete setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } } public static class ProductsRecipes { @DataMember(Order=1) @Required() public Long id = null; @DataMember(Order=2) @Required() @References(Tenants.class) public Long tenantsId = null; @DataMember(Order=3) @Required() @References(Zones.class) public Long zonesId = null; @DataMember(Order=4) @Required() @References(Products.class) public Long productsId = null; @DataMember(Order=5) @Required() public String recipeUrl = null; public Long getId() { return id; } public ProductsRecipes setId(Long value) { this.id = value; return this; } public Long getTenantsId() { return tenantsId; } public ProductsRecipes setTenantsId(Long value) { this.tenantsId = value; return this; } public Long getZonesId() { return zonesId; } public ProductsRecipes setZonesId(Long value) { this.zonesId = value; return this; } public Long getProductsId() { return productsId; } public ProductsRecipes setProductsId(Long value) { this.productsId = value; return this; } public String getRecipeUrl() { return recipeUrl; } public ProductsRecipes setRecipeUrl(String value) { this.recipeUrl = value; return this; } } }