(* Options: Date: 2026-09-21 22:51:26 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://clouddemo.pickeos.com:1337 //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: AddNodeToArea.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace GoToLightAPI open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] [] type AddNodeToArea() = /// ///Area name /// [] member val Area:String = null with get,set /// ///LC address /// [] member val LCAddress:String = null with get,set /// ///Pixel start number /// [] member val PixelStart:Int32 = new Int32() with get,set /// ///Pixel stop number /// [] member val PixelStop:Int32 = new Int32() with get,set /// ///Index of node in the group /// [] member val Index:Int32 = new Int32() with get,set /// ///Optional: name of the stockroom where the area is located /// [] member val StockroomName:String = null with get,set /// ///Optional: reverse direction /// [] member val Reverse:Boolean = new Boolean() with get,set