Add AllowedMentions field to WebhookParams
This commit is contained in:
parent
928baab30a
commit
ea94122b57
1 changed files with 7 additions and 6 deletions
13
structs.go
13
structs.go
|
@ -1071,12 +1071,13 @@ const (
|
||||||
|
|
||||||
// WebhookParams is a struct for webhook params, used in the WebhookExecute command.
|
// WebhookParams is a struct for webhook params, used in the WebhookExecute command.
|
||||||
type WebhookParams struct {
|
type WebhookParams struct {
|
||||||
Content string `json:"content,omitempty"`
|
Content string `json:"content,omitempty"`
|
||||||
Username string `json:"username,omitempty"`
|
Username string `json:"username,omitempty"`
|
||||||
AvatarURL string `json:"avatar_url,omitempty"`
|
AvatarURL string `json:"avatar_url,omitempty"`
|
||||||
TTS bool `json:"tts,omitempty"`
|
TTS bool `json:"tts,omitempty"`
|
||||||
File string `json:"file,omitempty"`
|
File string `json:"file,omitempty"`
|
||||||
Embeds []*MessageEmbed `json:"embeds,omitempty"`
|
Embeds []*MessageEmbed `json:"embeds,omitempty"`
|
||||||
|
AllowedMentions *MessageAllowedMentions `json:"allowed_mentions,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// MessageReaction stores the data for a message reaction.
|
// MessageReaction stores the data for a message reaction.
|
||||||
|
|
Loading…
Reference in a new issue