/* Options: Date: 2026-09-21 23:46:55 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: GetPositions.* //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="/GetPositions/{Key}") public static class GetPositions { /** * Key identifying one or several locations */ @ApiMember(Description="Key identifying one or several locations", IsRequired=true) public String Key = null; /** * Optional: name of the stockroom where the position(s) is (are) located */ @ApiMember(Description="Optional: name of the stockroom where the position(s) is (are) located") public String StockroomName = null; public String getKey() { return Key; } public GetPositions setKey(String value) { this.Key = value; return this; } public String getStockroomName() { return StockroomName; } public GetPositions setStockroomName(String value) { this.StockroomName = value; return this; } } }