Add AllowedMentions field to WebhookParams

This commit is contained in:
redbluescreen 2020-07-23 19:11:21 +03:00
parent 928baab30a
commit ea94122b57
No known key found for this signature in database
GPG key ID: D325746830F77E9A

View file

@ -1077,6 +1077,7 @@ type WebhookParams struct {
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.