44 lines
1.2 KiB
Go
44 lines
1.2 KiB
Go
package message
|
|
|
|
type (
|
|
// Payload that will be sent to Discord.
|
|
payload struct {
|
|
Wait bool `json:"wait"`
|
|
Content string `json:"content"`
|
|
Username string `json:"username"`
|
|
AvatarURL string `json:"avatar_url"`
|
|
TTS bool `json:"tts"`
|
|
Embeds []EmbedObject `json:"embeds"`
|
|
}
|
|
|
|
// EmbedFooterObject for Embed Footer Structure.
|
|
EmbedFooterObject struct {
|
|
Text string `json:"text"`
|
|
IconURL string `json:"icon_url"`
|
|
}
|
|
|
|
// EmbedAuthorObject for Embed Author Structure
|
|
EmbedAuthorObject struct {
|
|
Name string `json:"name"`
|
|
URL string `json:"url"`
|
|
IconURL string `json:"icon_url"`
|
|
}
|
|
|
|
// EmbedFieldObject for Embed Field Structure
|
|
EmbedFieldObject struct {
|
|
Name string `json:"name"`
|
|
Value string `json:"value"`
|
|
}
|
|
|
|
// EmbedObject is for Embed Structure
|
|
EmbedObject struct {
|
|
Title string `json:"title"`
|
|
Description string `json:"description"`
|
|
URL string `json:"url"`
|
|
Color int64 `json:"color"`
|
|
Footer EmbedFooterObject `json:"footer"`
|
|
Author EmbedAuthorObject `json:"author"`
|
|
Fields []EmbedFieldObject `json:"fields"`
|
|
}
|
|
)
|