Browse Source

Allow marshaling of data field in interactions

Carson Hoffman 3 years ago
parent
commit
7c455ffc70
1 changed files with 1 additions and 1 deletions
  1. 1 1
      interactions.go

+ 1 - 1
interactions.go

@@ -131,7 +131,7 @@ func (t InteractionType) String() string {
 type Interaction struct {
 	ID        string          `json:"id"`
 	Type      InteractionType `json:"type"`
-	Data      InteractionData `json:"-"`
+	Data      InteractionData `json:"data"`
 	GuildID   string          `json:"guild_id"`
 	ChannelID string          `json:"channel_id"`