(* Options: Date: 2026-09-21 22:52:19 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: ShowPredictive.* //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 HeaderMode = | on = 0 | off = 1 | once = 2 [] [] type ShowPredictive() = /// ///Key identifying a location that will be shown blinking /// [] member val BlinkKey:String = null with get,set /// ///Key identifying a location that will be shown not blinking /// [] member val SteadyKey:String = null with get,set /// ///HTML Color code (e.g. FF00FF) /// [] member val Color:String = null with get,set /// ///Indicates the way the area header will be displayed (possible values are on, off, once) /// [] member val ShowHeader:HeaderMode = new HeaderMode() with get,set /// ///Name of the owner of the color/command to allow color sharing /// [] member val Owner:String = null with get,set /// ///Optional: name of the stockroom where to show the position /// [] member val StockroomName:String = null with get,set