/* Options: Date: 2026-09-21 22:51:02 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://clouddemo.pickeos.com:1337 //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: SetFreePosition.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/SetFreePosition/{Key}/{LCAddress}/{Etage}/{Pixel}/{Width}") public static class SetFreePosition { /** * Key identifying a location */ @ApiMember(Description="Key identifying a location", IsRequired=true) public String Key = null; /** * LCAddress */ @ApiMember(Description="LCAddress", IsRequired=true) public String LCAddress = null; /** * Pixel number on the area */ @ApiMember(Description="Pixel number on the area", IsRequired=true) public Integer Pixel = null; /** * Pixel width */ @ApiMember(Description="Pixel width", IsRequired=true) public Integer Width = null; /** * Optional: name of the stockroom where the position is located */ @ApiMember(Description="Optional: name of the stockroom where the position is located") public String StockroomName = null; /** * Optional: overwrite existing positions defined with the same key: Yes by default */ @ApiMember(Description="Optional: overwrite existing positions defined with the same key: Yes by default") public Boolean Overwrite = null; public String getKey() { return Key; } public SetFreePosition setKey(String value) { this.Key = value; return this; } public String getLcAddress() { return LCAddress; } public SetFreePosition setLcAddress(String value) { this.LCAddress = value; return this; } public Integer getPixel() { return Pixel; } public SetFreePosition setPixel(Integer value) { this.Pixel = value; return this; } public Integer getWidth() { return Width; } public SetFreePosition setWidth(Integer value) { this.Width = value; return this; } public String getStockroomName() { return StockroomName; } public SetFreePosition setStockroomName(String value) { this.StockroomName = value; return this; } public Boolean isOverwrite() { return Overwrite; } public SetFreePosition setOverwrite(Boolean value) { this.Overwrite = value; return this; } } }