/* 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: GrowplansVarietiesEdit.* //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="/growplans_varieties/{Id}", Verbs="PUT") @DataContract public static class GrowplansVarietiesEdit implements IReturn { @DataMember(Order=1) @Validate(Validator="NotNull") public Long id = null; @DataMember(Order=2) @Validate(Validator="NotNull") public Long growplansBoxesId = null; @DataMember(Order=3) @Validate(Validator="NotNull") public Long cropsId = null; @DataMember(Order=4) @Validate(Validator="NotNull") public Long varietiesId = null; public Long getId() { return id; } public GrowplansVarietiesEdit setId(Long value) { this.id = value; return this; } public Long getGrowplansBoxesId() { return growplansBoxesId; } public GrowplansVarietiesEdit setGrowplansBoxesId(Long value) { this.growplansBoxesId = value; return this; } public Long getCropsId() { return cropsId; } public GrowplansVarietiesEdit setCropsId(Long value) { this.cropsId = value; return this; } public Long getVarietiesId() { return varietiesId; } public GrowplansVarietiesEdit setVarietiesId(Long value) { this.varietiesId = value; return this; } private static Object responseType = GrowplansVarietiesEditResponse.class; public Object getResponseType() { return responseType; } } public static class GrowplansVarietiesEditResponse { @DataMember(Order=1) public Long id = null; @DataMember(Order=2) public Long growplansBoxesId = null; @DataMember(Order=3) public Long cropsId = null; @DataMember(Order=4) public Long varietiesId = null; @DataMember(Order=6) public ResponseStatus responseStatus = null; public Long getId() { return id; } public GrowplansVarietiesEditResponse setId(Long value) { this.id = value; return this; } public Long getGrowplansBoxesId() { return growplansBoxesId; } public GrowplansVarietiesEditResponse setGrowplansBoxesId(Long value) { this.growplansBoxesId = value; return this; } public Long getCropsId() { return cropsId; } public GrowplansVarietiesEditResponse setCropsId(Long value) { this.cropsId = value; return this; } public Long getVarietiesId() { return varietiesId; } public GrowplansVarietiesEditResponse setVarietiesId(Long value) { this.varietiesId = value; return this; } public ResponseStatus getResponseStatus() { return responseStatus; } public GrowplansVarietiesEditResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } } }