Add nick field to guild member struct

This commit is contained in:
jonas747 2016-04-30 23:43:52 +02:00
parent c8b796b223
commit 0b313b016f

View file

@ -250,6 +250,7 @@ type Game struct {
type Member struct {
GuildID string `json:"guild_id"`
JoinedAt string `json:"joined_at"`
Nick string `json:"nick"`
Deaf bool `json:"deaf"`
Mute bool `json:"mute"`
User *User `json:"user"`