From 5ac1d6c01910723833a41539c60b2f2f5b72f964 Mon Sep 17 00:00:00 2001 From: tyler Date: Mon, 18 Dec 2023 13:25:51 -0500 Subject: [PATCH] Added missing fields in livestream response --- livestream.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/livestream.go b/livestream.go index 035b43a..aff4cd6 100644 --- a/livestream.go +++ b/livestream.go @@ -83,6 +83,9 @@ type LivestreamResponse struct { Now int64 `json:"now"` Type string `json:"type"` UserID string `json:"user_id"` + Username string `json:"username"` + ChannelID int64 `json:"channel_id"` + ChannelName string `json:"channel_name"` MaxNumResults int64 `json:"max_num_results"` Followers Followers `json:"followers"` Subscribers Subscribers `json:"subscribers"`