(* Options: Date: 2026-09-21 22:51:53 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: PBL_SetFreePosition.* //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 PBL_StandardResponse() = member val Success:Boolean = new Boolean() with get,set member val Error:String = null with get,set member val Result:Object = null with get,set member val Color:String = null with get,set [] [] type PBL_SetFreePosition() = interface IReturn /// ///Key identifying a location /// [] member val Key:String = null with get,set /// ///LCAddress /// [] member val LCAddress:String = null with get,set /// ///Number of first pixel /// [] member val PixelBegin:Int32 = new Int32() with get,set /// ///Number of last pixel /// [] member val PixelEnd:Int32 = new Int32() with get,set /// ///Output number /// [] member val OutputNumber:Int32 = new Int32() with get,set