Codebase list golang-github-nlopes-slack / 0c92f27 websocket_reactions.go
0c92f27

Tree @0c92f27 (Download .tar.gz)

websocket_reactions.go @0c92f27raw · history · blame

package slack

type reactionEvent struct {
	Type           string         `json:"type"`
	User           string         `json:"user"`
	Item           ReactedItem    `json:"item"`
	Reaction       string         `json:"reaction"`
	EventTimestamp JSONTimeString `json:"event_ts"`
}

// ReactionAddedEvent represents the Reaction added event
type ReactionAddedEvent reactionEvent

// ReactionRemovedEvent represents the Reaction removed event
type ReactionRemovedEvent reactionEvent