/* Options: Date: 2026-09-21 22:53:12 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: SetPositions.* //ExcludeTypes: //DefaultImports: */ // @Route("/SetPositions") export class SetPositions { /** @description Key identifying a location */ // @ApiMember(Description="Key identifying a location", IsRequired=true) public Positions: Position[] = []; /** @description Optional: name of the stockroom where the position is located */ // @ApiMember(Description="Optional: name of the stockroom where the position is located") public StockroomName: string; /** @description 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 Overwrite?: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'SetPositions'; } public getMethod() { return 'POST'; } public createResponse() {} }