/* Options: Date: 2025-12-06 09:39:37 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: ProductsRecipesDelete.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/products_recipes/{Id}", Verbs="DELETE") @DataContract public static class ProductsRecipesDelete implements IReturn { @DataMember(Order=1) @Validate(Validator="NotNull") public Long id = null; public Long getId() { return id; } public ProductsRecipesDelete setId(Long value) { this.id = value; return this; } private static Object responseType = ProductsRecipesDeleteResponse.class; public Object getResponseType() { return responseType; } } public static class ProductsRecipesDeleteResponse { @DataMember(Order=1) public Long id = null; @DataMember(Order=7) public ResponseStatus responseStatus = null; public Long getId() { return id; } public ProductsRecipesDeleteResponse setId(Long value) { this.id = value; return this; } public ResponseStatus getResponseStatus() { return responseStatus; } public ProductsRecipesDeleteResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } } }