(* Options: Date: 2026-09-21 22:51:50 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: ShowMultipleEx.* //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 KeyToDisplay() = /// ///Key identifying a location /// [] member val Key:String = null with get,set /// ///Blinking or not /// [] member val Blink:Boolean = new Boolean() with get,set /// ///Indicates whether we show the area header of the blinking key or not /// [] member val ShowHeader:Boolean = new Boolean() with get,set [] [] type ShowMultipleEx() = /// ///HTML Color code (e.g. FF00FF) /// [] member val Color:String = null with get,set /// ///When set to false, it turns off the same color in a previous position /// [] member val Persistant:Boolean = new Boolean() with get,set /// ///List of key object (KeyToDisplay) to display /// [] member val Keys:ResizeArray = null with get,set /// ///Optional: delay the execution of the command (in seconds) /// [] member val Delay:Nullable = new Nullable() with get,set /// ///Optional: duration of the show in seconds /// [] member val Duration:Nullable = new Nullable() with get,set /// ///Optional: name of the stockroom where to show the position /// [] member val StockroomName:String = null with get,set /// ///Name of the owner of the color/command to allow color sharing /// [] member val Owner:String = null with get,set