Codebase list golang-github-nlopes-slack / f282e598-9350-4d40-ba4b-90cbf2cd4600/v0.2.0 websocket_pins.go
f282e598-9350-4d40-ba4b-90cbf2cd4600/v0.2.0

Tree @f282e598-9350-4d40-ba4b-90cbf2cd4600/v0.2.0 (Download .tar.gz)

websocket_pins.go @f282e598-9350-4d40-ba4b-90cbf2cd4600/v0.2.0raw · 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