' Options: 'Date: 2026-09-21 22:54:54 '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: ShowQuantity.* '''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 ShowCommon ''' '''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 ''' '''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 ''' '''Optional: name of the owner of the color/command to allow color sharing ''' Public Overridable Property Owner As String ''' '''Optional: indicates if message shall be delivered in an unreliable way (faster) ''' Public Overridable Property Unreliable As Boolean? ''' '''Optional: indicates if the header shall be displayed ''' Public Overridable Property DisplayHeader As Boolean? End Class Public Partial Class ShowQuantity Inherits ShowCommon ''' '''Key identifying a location ''' Public Overridable Property Key As String ''' '''Quantity: number of LED to show ''' Public Overridable Property Quantity As Integer ''' '''Optional: Force blinking ''' Public Overridable Property ForceBlink As Boolean? ''' '''Animated effect selection: 0 = Always ON (no effect), 1 = BLINK_NORMAL, 2 = BLINK_FAST, 3 = BLINK_SLOW, 4 = FADE_IN_OUT_NORMAL, 5 = FADE_IN_OUT_FAST, 6 = FADE_IN_OUT_SLOW, 7 = FADE_OUT_NORMAL, 8 = FADE_OUT_FAST, 9 = FADE_OUT_SLOW ''' Public Overridable Property Effect As Integer? End Class End Namespace End Namespace