From 6cbf1cc0d295b5227a39aecd68e7ee9d826de794 Mon Sep 17 00:00:00 2001 From: Justin Hawkins Date: Thu, 27 Jun 2024 23:37:30 +0930 Subject: [PATCH] More docco --- events_send.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/events_send.go b/events_send.go index e9321e2..e135ecc 100644 --- a/events_send.go +++ b/events_send.go @@ -15,12 +15,12 @@ const EventTargetHardware = 1 const EventTargetSoftware = 2 type ESCommon struct { - Event string `json:"event"` - Context string `json:"context"` + Event string `json:"event"` // name of this event type + Context string `json:"context"` // A value to Identify the instance's action or Property Inspector. This value is received by the Property Inspector as a parameter of the connectElgatoStreamDeckSocket function. } type ESCommonNoContext struct { - Event string `json:"event"` + Event string `json:"event"` // name of this event type } type ESOpenMessage struct {