/* Options: Date: 2025-12-06 12:16:15 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: PropagationsEdit.* //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="/propagations/{Id}", Verbs="PUT") @DataContract public static class PropagationsEdit implements IReturn { @DataMember(Order=1) @Validate(Validator="NotNull") public Long id = null; @DataMember(Order=2) @Validate(Validator="NotNull") public Long tenantsId = null; @DataMember(Order=3) @Validate(Validator="NotNull") public Long zonesId = null; @DataMember(Order=4) @Validate(Validator="NotNull") public Long varietiesId = null; @DataMember(Order=5) @Validate(Validator="NotNull") public String propagationTypes = null; @DataMember(Order=6) @Validate(Validator="NotNull") public Integer plantPerSquare = null; public Long getId() { return id; } public PropagationsEdit setId(Long value) { this.id = value; return this; } public Long getTenantsId() { return tenantsId; } public PropagationsEdit setTenantsId(Long value) { this.tenantsId = value; return this; } public Long getZonesId() { return zonesId; } public PropagationsEdit setZonesId(Long value) { this.zonesId = value; return this; } public Long getVarietiesId() { return varietiesId; } public PropagationsEdit setVarietiesId(Long value) { this.varietiesId = value; return this; } public String getPropagationTypes() { return propagationTypes; } public PropagationsEdit setPropagationTypes(String value) { this.propagationTypes = value; return this; } public Integer getPlantPerSquare() { return plantPerSquare; } public PropagationsEdit setPlantPerSquare(Integer value) { this.plantPerSquare = value; return this; } private static Object responseType = PropagationsEditResponse.class; public Object getResponseType() { return responseType; } } public static class PropagationsEditResponse { @DataMember(Order=1) public Long id = null; @DataMember(Order=2) public Long tenantsId = null; @DataMember(Order=3) public Long zonesId = null; @DataMember(Order=4) public Long varietiesId = null; @DataMember(Order=5) public String propagationTypes = null; @DataMember(Order=6) public Integer plantPerSquare = null; @DataMember(Order=8) public ResponseStatus responseStatus = null; public Long getId() { return id; } public PropagationsEditResponse setId(Long value) { this.id = value; return this; } public Long getTenantsId() { return tenantsId; } public PropagationsEditResponse setTenantsId(Long value) { this.tenantsId = value; return this; } public Long getZonesId() { return zonesId; } public PropagationsEditResponse setZonesId(Long value) { this.zonesId = value; return this; } public Long getVarietiesId() { return varietiesId; } public PropagationsEditResponse setVarietiesId(Long value) { this.varietiesId = value; return this; } public String getPropagationTypes() { return propagationTypes; } public PropagationsEditResponse setPropagationTypes(String value) { this.propagationTypes = value; return this; } public Integer getPlantPerSquare() { return plantPerSquare; } public PropagationsEditResponse setPlantPerSquare(Integer value) { this.plantPerSquare = value; return this; } public ResponseStatus getResponseStatus() { return responseStatus; } public PropagationsEditResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } } }