summaryrefslogtreecommitdiffstats
path: root/model/message_export.go
blob: b59b114d46bb9803086754bdbe7f301cfe828073 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

package model

type MessageExport struct {
	ChannelId          *string
	ChannelDisplayName *string

	UserId    *string
	UserEmail *string

	PostId       *string
	PostCreateAt *int64
	PostMessage  *string
	PostType     *string
	PostFileIds  StringArray
}