Fixed unexported "mute" in Members
This commit is contained in:
parent
18b20b484f
commit
aba292d922
1 changed files with 1 additions and 1 deletions
2
guild.go
2
guild.go
|
@ -51,7 +51,7 @@ type Member struct {
|
||||||
GuildId string `json:"guild_id"`
|
GuildId string `json:"guild_id"`
|
||||||
JoinedAt string `json:"joined_at"`
|
JoinedAt string `json:"joined_at"`
|
||||||
Deaf bool `json:"deaf"`
|
Deaf bool `json:"deaf"`
|
||||||
mute bool `json:"mute"`
|
Mute bool `json:"mute"`
|
||||||
User User `json:"user"`
|
User User `json:"user"`
|
||||||
Roles []string `json:"roles"`
|
Roles []string `json:"roles"`
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue