From a24247b6e815ca57949c5d8abb8179f208d534a1 Mon Sep 17 00:00:00 2001 From: Bruce Marriner Date: Sat, 20 Feb 2016 14:51:02 -0600 Subject: [PATCH] Added Bitrate to Channel struct, closes #116 --- structs.go | 1 + 1 file changed, 1 insertion(+) diff --git a/structs.go b/structs.go index 5bffead..a765efe 100644 --- a/structs.go +++ b/structs.go @@ -119,6 +119,7 @@ type Channel struct { Name string `json:"name"` Topic string `json:"topic"` Position int `json:"position"` + Bitrate int `json:"bitrate"` Type string `json:"type"` PermissionOverwrites []*PermissionOverwrite `json:"permission_overwrites"` IsPrivate bool `json:"is_private"`