mirror of
https://github.com/42wim/matterbridge
synced 2024-11-05 12:00:27 +00:00
a0bca42a7a
* Update vendored libs * Fix slack api changes
22 lines
480 B
Go
22 lines
480 B
Go
package slack
|
|
|
|
type imChannel struct {
|
|
ID string `json:"id"`
|
|
}
|
|
|
|
type imResponseFull struct {
|
|
NoOp bool `json:"no_op"`
|
|
AlreadyClosed bool `json:"already_closed"`
|
|
AlreadyOpen bool `json:"already_open"`
|
|
Channel imChannel `json:"channel"`
|
|
IMs []IM `json:"ims"`
|
|
History
|
|
SlackResponse
|
|
}
|
|
|
|
// IM contains information related to the Direct Message channel
|
|
type IM struct {
|
|
Conversation
|
|
IsUserDeleted bool `json:"is_user_deleted"`
|
|
}
|