forked from pothtonswer/discordmuffin
feat(ApplicationCommand): guild id (#1207)
Add missing guild_id field to ApplicationCommand structure
This commit is contained in:
parent
033c07d89d
commit
f697ccae8c
1 changed files with 1 additions and 0 deletions
|
@ -33,6 +33,7 @@ const (
|
||||||
type ApplicationCommand struct {
|
type ApplicationCommand struct {
|
||||||
ID string `json:"id,omitempty"`
|
ID string `json:"id,omitempty"`
|
||||||
ApplicationID string `json:"application_id,omitempty"`
|
ApplicationID string `json:"application_id,omitempty"`
|
||||||
|
GuildID string `json:"guild_id,omitempty"`
|
||||||
Version string `json:"version,omitempty"`
|
Version string `json:"version,omitempty"`
|
||||||
Type ApplicationCommandType `json:"type,omitempty"`
|
Type ApplicationCommandType `json:"type,omitempty"`
|
||||||
Name string `json:"name"`
|
Name string `json:"name"`
|
||||||
|
|
Loading…
Reference in a new issue