Codebase list golang-github-nlopes-slack / 7a0b9ba websocket_stars.go
7a0b9ba

Tree @7a0b9ba (Download .tar.gz)

websocket_stars.go @7a0b9baraw · history · blame

package slack

type starEvent struct {
	Type           string      `json:"type"`
	User           string      `json:"user"`
	Item           StarredItem `json:"item"`
	EventTimestamp string      `json:"event_ts"`
}

// StarAddedEvent represents the Star added event
type StarAddedEvent starEvent

// StarRemovedEvent represents the Star removed event
type StarRemovedEvent starEvent