1
0
Fork 0
mirror of https://github.com/diamondburned/arikawa.git synced 2024-09-12 05:06:28 +00:00
arikawa/api/interaction.go

47 lines
1.3 KiB
Go
Raw Normal View History

package api
import (
"github.com/diamondburned/arikawa/v2/discord"
"github.com/diamondburned/arikawa/v2/utils/httputil"
)
var EndpointInteractions = Endpoint + "interactions/"
type InteractionResponseType uint
const (
PongInteraction InteractionResponseType = iota + 1
AcknowledgeInteraction
MessageInteraction
MessageInteractionWithSource
AcknowledgeInteractionWithSource
2021-05-12 05:36:03 +00:00
DeferredMessageUpdate
UpdateMessage
)
type InteractionResponse struct {
Type InteractionResponseType `json:"type"`
Data *InteractionResponseData `json:"data,omitempty"`
}
// InteractionResponseData is InteractionApplicationCommandCallbackData in the
// official documentation.
type InteractionResponseData struct {
2021-05-12 05:36:03 +00:00
TTS bool `json:"tts"`
Content string `json:"content"`
Components []discord.Component `json:"components,omitempty"`
Embeds []discord.Embed `json:"embeds,omitempty"`
AllowedMentions AllowedMentions `json:"allowed_mentions,omitempty"`
}
// RespondInteraction responds to an incoming interaction. It is also known as
// an "interaction callback".
func (c *Client) RespondInteraction(
id discord.InteractionID, token string, data InteractionResponse) error {
return c.FastRequest(
"POST",
EndpointInteractions+id.String()+"/"+token+"/callback",
httputil.WithJSONBody(data),
)
}