' Options: 'Date: 2026-09-21 22:52:55 'Version: 8.52 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: http://clouddemo.pickeos.com:1337 ' '''GlobalNamespace: '''MakePartial: True '''MakeVirtual: True '''MakeDataContractsExtensible: False '''AddReturnMarker: True '''AddDescriptionAsComments: True '''AddDataContractAttributes: False '''AddIndexesToDataMembers: False '''AddGeneratedCodeAttributes: False '''AddResponseStatus: False '''AddImplicitVersion: '''InitializeCollections: False '''ExportValueTypes: False 'IncludeTypes: ShowMultipleEx.* '''ExcludeTypes: '''AddNamespaces: '''AddDefaultXmlNamespace: http://schemas.servicestack.net/types Imports System Imports System.IO Imports System.Collections Imports System.Collections.Generic Imports System.Runtime.Serialization Imports ServiceStack Imports ServiceStack.DataAnnotations Imports GoToLightAPI Namespace Global Namespace GoToLightAPI Public Partial Class KeyToDisplay ''' '''Key identifying a location ''' Public Overridable Property Key As String ''' '''Blinking or not ''' Public Overridable Property Blink As Boolean ''' '''Indicates whether we show the area header of the blinking key or not ''' Public Overridable Property ShowHeader As Boolean End Class Public Partial Class ShowMultipleEx ''' '''HTML Color code (e.g. FF00FF) ''' Public Overridable Property Color As String ''' '''When set to false, it turns off the same color in a previous position ''' Public Overridable Property Persistant As Boolean ''' '''List of key object (KeyToDisplay) to display ''' Public Overridable Property Keys As List(Of KeyToDisplay) = New List(Of KeyToDisplay) ''' '''Optional: delay the execution of the command (in seconds) ''' Public Overridable Property Delay As Integer? ''' '''Optional: duration of the show in seconds ''' Public Overridable Property Duration As Integer? ''' '''Optional: name of the stockroom where to show the position ''' Public Overridable Property StockroomName As String ''' '''Name of the owner of the color/command to allow color sharing ''' Public Overridable Property Owner As String End Class End Namespace End Namespace