/* Options: Date: 2026-09-21 22:54:11 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://clouddemo.pickeos.com:1337 //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetPositions.* //ExcludeTypes: //DefaultImports: */ // @Route("/GetPositions/{Key}") export class GetPositions { /** @description Key identifying one or several locations */ // @ApiMember(Description="Key identifying one or several locations", IsRequired=true) public Key: string; /** @description 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 StockroomName: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetPositions'; } public getMethod() { return 'POST'; } public createResponse() {} }