From 7b6a91ac0457d16474690189ee030e2fc252dddd Mon Sep 17 00:00:00 2001 From: Sebastian Winkler Date: Fri, 22 Sep 2017 16:43:00 +0200 Subject: [PATCH] adds parent_id to channel struct (#448) --- structs.go | 1 + 1 file changed, 1 insertion(+) diff --git a/structs.go b/structs.go index 35da213..cbe4a09 100644 --- a/structs.go +++ b/structs.go @@ -174,6 +174,7 @@ type Channel struct { Recipients []*User `json:"recipients"` Messages []*Message `json:"-"` PermissionOverwrites []*PermissionOverwrite `json:"permission_overwrites"` + ParentID string `json:"parent_id"` } // A PermissionOverwrite holds permission overwrite data for a Channel