2019-11-29 06:59:40 -05:00
|
|
|
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
|
|
|
// See LICENSE.txt for license information.
|
2016-12-21 16:35:01 -05:00
|
|
|
|
|
|
|
|
package model
|
|
|
|
|
|
|
|
|
|
type ChannelView struct {
|
2021-05-26 11:10:25 -04:00
|
|
|
ChannelId string `json:"channel_id"`
|
|
|
|
|
PrevChannelId string `json:"prev_channel_id"`
|
|
|
|
|
CollapsedThreadsSupported bool `json:"collapsed_threads_supported"`
|
2016-12-21 16:35:01 -05:00
|
|
|
}
|
|
|
|
|
|
2017-09-29 11:45:59 -04:00
|
|
|
type ChannelViewResponse struct {
|
|
|
|
|
Status string `json:"status"`
|
|
|
|
|
LastViewedAtTimes map[string]int64 `json:"last_viewed_at_times"`
|
|
|
|
|
}
|