mirror of
https://github.com/42wim/matterbridge
synced 2024-11-03 15:40:24 +00:00
35 lines
668 B
Go
35 lines
668 B
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
package model
|
|
|
|
import (
|
|
"encoding/json"
|
|
"io"
|
|
)
|
|
|
|
type ChannelData struct {
|
|
Channel *Channel `json:"channel"`
|
|
Member *ChannelMember `json:"member"`
|
|
}
|
|
|
|
func (o *ChannelData) Etag() string {
|
|
var mt int64 = 0
|
|
if o.Member != nil {
|
|
mt = o.Member.LastUpdateAt
|
|
}
|
|
|
|
return Etag(o.Channel.Id, o.Channel.UpdateAt, o.Channel.LastPostAt, mt)
|
|
}
|
|
|
|
func (o *ChannelData) ToJson() string {
|
|
b, _ := json.Marshal(o)
|
|
return string(b)
|
|
}
|
|
|
|
func ChannelDataFromJson(data io.Reader) *ChannelData {
|
|
var o *ChannelData
|
|
json.NewDecoder(data).Decode(&o)
|
|
return o
|
|
}
|