From 4487f29b571eb1921baa0ee9f655d3372b911eea Mon Sep 17 00:00:00 2001 From: Chris Ainsworth-Patrick Date: Thu, 21 Dec 2023 11:32:58 +0000 Subject: [PATCH] fix field names! --- types.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types.go b/types.go index e77198f..f4c39f9 100644 --- a/types.go +++ b/types.go @@ -52,8 +52,8 @@ type EventIncoming struct { Configuration Configuration `edn:"configuration"` Result [][]edn.RawMessage `edn:"result"` Metadata struct { - AfterBasisT int64 `edn:"tx"` - Tx int64 `edn:"after-basis-t"` + AfterBasisT int64 `edn:"after-basis-t"` + Tx int64 `edn:"tx"` ScheduleName string `edn:"schedule-name"` } `edn:"metadata"` } `edn:"subscription"`