1
0
Fork 0
mirror of https://github.com/diamondburned/arikawa.git synced 2025-11-23 13:14:16 +00:00

gateway: Fix RequestGuildMembersCommand

This commit is contained in:
diamondburned 2022-04-08 05:47:21 -07:00
parent 6aefc34992
commit 4108d10b44
No known key found for this signature in database
GPG key ID: D78C4471CE776659

View file

@ -76,9 +76,9 @@ type RequestGuildMembersCommand struct {
GuildIDs []discord.GuildID `json:"guild_id"`
UserIDs []discord.UserID `json:"user_ids,omitempty"`
Query string `json:"query"`
Limit uint `json:"limit"`
Presences bool `json:"presences,omitempty"`
Query string `json:"query,omitempty"`
Limit uint `json:"limit,omitempty"`
Presences bool `json:"presences"`
Nonce string `json:"nonce,omitempty"`
}