/* Options: Date: 2026-09-21 23:51:07 SwiftVersion: 6.0 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://clouddemo.pickeos.com:1337 //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: AddNodeToArea.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/AddNodeToArea/{Area}/{LCAddress}/{PixelStart}/{PixelStop}/{Index}") public class AddNodeToArea : Codable { /** * Area name */ // @ApiMember(Description="Area name", IsRequired=true) public var area:String? /** * LC address */ // @ApiMember(Description="LC address", IsRequired=true) public var lcAddress:String? /** * Pixel start number */ // @ApiMember(Description="Pixel start number", IsRequired=true) public var pixelStart:Int? /** * Pixel stop number */ // @ApiMember(Description="Pixel stop number", IsRequired=true) public var pixelStop:Int? /** * Index of node in the group */ // @ApiMember(Description="Index of node in the group", IsRequired=true) public var index:Int? /** * Optional: name of the stockroom where the area is located */ // @ApiMember(Description="Optional: name of the stockroom where the area is located") public var stockroomName:String? /** * Optional: reverse direction */ // @ApiMember(Description="Optional: reverse direction") public var reverse:Bool? required public init(){} }