From fa6a147736eaaf7d10ca6d4575c34a4c96eb1ffa Mon Sep 17 00:00:00 2001 From: Jack McGuire Date: Thu, 12 Oct 2023 23:28:48 +0100 Subject: [PATCH] fix: EventSubProduct Bits json key - fix the ```EventSubProduct ``` Bits json tag --- eventsub.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eventsub.go b/eventsub.go index 851f57d..e8444f6 100644 --- a/eventsub.go +++ b/eventsub.go @@ -513,7 +513,7 @@ type EventSubOutcome struct { type EventSubProduct struct { Name string `json:"name"` - Bits int `json:"bots"` + Bits int `json:"bits"` Sku string `json:"sku"` InDevelopment bool `json:"in_development"` }