github.com/masterhung0112/hk_server/v5@v5.0.0-20220302090640-ec71aef15e1c/services/sharedchannel/response.go (about) 1 // Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved. 2 // See LICENSE.txt for license information. 3 4 package sharedchannel 5 6 type SyncResponse struct { 7 UsersLastUpdateAt int64 `json:"users_last_update_at"` 8 UserErrors []string `json:"user_errors"` 9 UsersSyncd []string `json:"users_syncd"` 10 11 PostsLastUpdateAt int64 `json:"posts_last_update_at"` 12 PostErrors []string `json:"post_errors"` 13 14 ReactionsLastUpdateAt int64 `json:"reactions_last_update_at"` 15 ReactionErrors []string `json:"reaction_errors"` 16 }