/* Options: Date: 2026-09-21 22:51:51 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: SetFreePosition.* //ExcludeTypes: //DefaultImports: */ // @Route("/SetFreePosition/{Key}/{LCAddress}/{Etage}/{Pixel}/{Width}") export class SetFreePosition { /** @description Key identifying a location */ // @ApiMember(Description="Key identifying a location", IsRequired=true) public Key: string; /** @description LCAddress */ // @ApiMember(Description="LCAddress", IsRequired=true) public LCAddress: string; /** @description Pixel number on the area */ // @ApiMember(Description="Pixel number on the area", IsRequired=true) public Pixel: number; /** @description Pixel width */ // @ApiMember(Description="Pixel width", IsRequired=true) public Width: number; /** @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 'SetFreePosition'; } public getMethod() { return 'POST'; } public createResponse() {} }