From aad0e0b32acaac075bed60517cfba344c9afb4e9 Mon Sep 17 00:00:00 2001 From: tsudoko Date: Tue, 10 Apr 2018 05:26:23 +0200 Subject: [PATCH] Add Icon channel field (#531) --- structs.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/structs.go b/structs.go index f17fb4c..9fa6ce6 100644 --- a/structs.go +++ b/structs.go @@ -216,6 +216,9 @@ type Channel struct { // Whether the channel is marked as NSFW. NSFW bool `json:"nsfw"` + // Icon of the group DM channel. + Icon string `json:"icon"` + // The position of the channel, used for sorting in client. Position int `json:"position"`