/* Options: Date: 2025-12-06 09:43:07 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: UsersBoxesEdit.* //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="/users_boxes/{Id}", Verbs="PUT") @DataContract public static class UsersBoxesEdit implements IReturn { @DataMember(Order=1) @Validate(Validator="NotNull") public Long id = null; @DataMember(Order=2) @Validate(Validator="NotNull") public Long appUserId = null; @DataMember(Order=3) @Validate(Validator="NotNull") public Long authAppUserId = null; @DataMember(Order=4) @Validate(Validator="NotNull") public Date deploymentDate = null; @DataMember(Order=5) @Validate(Validator="NotNull") public Integer numberBoxes = null; @DataMember(Order=6) @Validate(Validator="NotNull") public String recipientType = null; @DataMember(Order=7) public Long foodGardensId = null; @DataMember(Order=8) public String otherDescription = null; public Long getId() { return id; } public UsersBoxesEdit setId(Long value) { this.id = value; return this; } public Long getAppUserId() { return appUserId; } public UsersBoxesEdit setAppUserId(Long value) { this.appUserId = value; return this; } public Long getAuthAppUserId() { return authAppUserId; } public UsersBoxesEdit setAuthAppUserId(Long value) { this.authAppUserId = value; return this; } public Date getDeploymentDate() { return deploymentDate; } public UsersBoxesEdit setDeploymentDate(Date value) { this.deploymentDate = value; return this; } public Integer getNumberBoxes() { return numberBoxes; } public UsersBoxesEdit setNumberBoxes(Integer value) { this.numberBoxes = value; return this; } public String getRecipientType() { return recipientType; } public UsersBoxesEdit setRecipientType(String value) { this.recipientType = value; return this; } public Long getFoodGardensId() { return foodGardensId; } public UsersBoxesEdit setFoodGardensId(Long value) { this.foodGardensId = value; return this; } public String getOtherDescription() { return otherDescription; } public UsersBoxesEdit setOtherDescription(String value) { this.otherDescription = value; return this; } private static Object responseType = UsersBoxesEditResponse.class; public Object getResponseType() { return responseType; } } public static class UsersBoxesEditResponse { @DataMember(Order=1) public Long id = null; @DataMember(Order=2) public Long appUserId = null; @DataMember(Order=3) public Long authAppUserId = null; @DataMember(Order=4) public Date deploymentDate = null; @DataMember(Order=5) public Integer numberBoxes = null; @DataMember(Order=6) public String recipientType = null; @DataMember(Order=7) public Long foodGardensId = null; @DataMember(Order=8) public String otherDescription = null; @DataMember(Order=10) public ResponseStatus responseStatus = null; public Long getId() { return id; } public UsersBoxesEditResponse setId(Long value) { this.id = value; return this; } public Long getAppUserId() { return appUserId; } public UsersBoxesEditResponse setAppUserId(Long value) { this.appUserId = value; return this; } public Long getAuthAppUserId() { return authAppUserId; } public UsersBoxesEditResponse setAuthAppUserId(Long value) { this.authAppUserId = value; return this; } public Date getDeploymentDate() { return deploymentDate; } public UsersBoxesEditResponse setDeploymentDate(Date value) { this.deploymentDate = value; return this; } public Integer getNumberBoxes() { return numberBoxes; } public UsersBoxesEditResponse setNumberBoxes(Integer value) { this.numberBoxes = value; return this; } public String getRecipientType() { return recipientType; } public UsersBoxesEditResponse setRecipientType(String value) { this.recipientType = value; return this; } public Long getFoodGardensId() { return foodGardensId; } public UsersBoxesEditResponse setFoodGardensId(Long value) { this.foodGardensId = value; return this; } public String getOtherDescription() { return otherDescription; } public UsersBoxesEditResponse setOtherDescription(String value) { this.otherDescription = value; return this; } public ResponseStatus getResponseStatus() { return responseStatus; } public UsersBoxesEditResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } } }