Codebase list golang-github-nlopes-slack / 35f89b01-bac1-45d4-b648-298316144d98/main websocket_pins.go
35f89b01-bac1-45d4-b648-298316144d98/main

Tree @35f89b01-bac1-45d4-b648-298316144d98/main (Download .tar.gz)

websocket_pins.go @35f89b01-bac1-45d4-b648-298316144d98/mainraw · history · blame

package slack

type pinEvent struct {
	Type           string `json:"type"`
	User           string `json:"user"`
	Item           Item   `json:"item"`
	Channel        string `json:"channel_id"`
	EventTimestamp string `json:"event_ts"`
	HasPins        bool   `json:"has_pins,omitempty"`
}

// PinAddedEvent represents the Pin added event
type PinAddedEvent pinEvent

// PinRemovedEvent represents the Pin removed event
type PinRemovedEvent pinEvent