Browse Source

adds parent_id to channel struct (#448)

Sebastian Winkler 7 years ago
parent
commit
7b6a91ac04
1 changed files with 1 additions and 0 deletions
  1. 1 0
      structs.go

+ 1 - 0
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