/* Options: Date: 2026-09-21 23:49:33 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: AddNodeToArea.* //ExcludeTypes: //DefaultImports: */ // @Route("/AddNodeToArea/{Area}/{LCAddress}/{PixelStart}/{PixelStop}/{Index}") export class AddNodeToArea { /** @description Area name */ // @ApiMember(Description="Area name", IsRequired=true) public Area: string; /** @description LC address */ // @ApiMember(Description="LC address", IsRequired=true) public LCAddress: string; /** @description Pixel start number */ // @ApiMember(Description="Pixel start number", IsRequired=true) public PixelStart: number; /** @description Pixel stop number */ // @ApiMember(Description="Pixel stop number", IsRequired=true) public PixelStop: number; /** @description Index of node in the group */ // @ApiMember(Description="Index of node in the group", IsRequired=true) public Index: number; /** @description Optional: name of the stockroom where the area is located */ // @ApiMember(Description="Optional: name of the stockroom where the area is located") public StockroomName: string; /** @description Optional: reverse direction */ // @ApiMember(Description="Optional: reverse direction") public Reverse: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'AddNodeToArea'; } public getMethod() { return 'POST'; } public createResponse() {} }