From 4a96a977c0e86e22edcda40730779279334685be Mon Sep 17 00:00:00 2001 From: Wim Date: Mon, 8 Jan 2018 22:41:38 +0100 Subject: Update vendor (slack) --- .../github.com/matterbridge/slack/conversation.go | 37 ---------------------- 1 file changed, 37 deletions(-) delete mode 100644 vendor/github.com/matterbridge/slack/conversation.go (limited to 'vendor/github.com/matterbridge/slack/conversation.go') diff --git a/vendor/github.com/matterbridge/slack/conversation.go b/vendor/github.com/matterbridge/slack/conversation.go deleted file mode 100644 index 83a1d4ee..00000000 --- a/vendor/github.com/matterbridge/slack/conversation.go +++ /dev/null @@ -1,37 +0,0 @@ -package slack - -// Conversation is the foundation for IM and BaseGroupConversation -type conversation struct { - ID string `json:"id"` - Created JSONTime `json:"created"` - IsOpen bool `json:"is_open"` - LastRead string `json:"last_read,omitempty"` - Latest *Message `json:"latest,omitempty"` - UnreadCount int `json:"unread_count,omitempty"` - UnreadCountDisplay int `json:"unread_count_display,omitempty"` -} - -// GroupConversation is the foundation for Group and Channel -type groupConversation struct { - conversation - Name string `json:"name"` - Creator string `json:"creator"` - IsArchived bool `json:"is_archived"` - Members []string `json:"members"` - Topic Topic `json:"topic"` - Purpose Purpose `json:"purpose"` -} - -// Topic contains information about the topic -type Topic struct { - Value string `json:"value"` - Creator string `json:"creator"` - LastSet JSONTime `json:"last_set"` -} - -// Purpose contains information about the purpose -type Purpose struct { - Value string `json:"value"` - Creator string `json:"creator"` - LastSet JSONTime `json:"last_set"` -} -- cgit v1.2.3