2017-11-30 09:07:04 -05:00
|
|
|
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
|
|
|
|
|
// See License.txt for license information.
|
|
|
|
|
|
|
|
|
|
package model
|
|
|
|
|
|
|
|
|
|
type MessageExport struct {
|
2018-06-22 11:15:19 +02:00
|
|
|
TeamId *string
|
|
|
|
|
TeamName *string
|
|
|
|
|
TeamDisplayName *string
|
|
|
|
|
|
2017-11-30 09:07:04 -05:00
|
|
|
ChannelId *string
|
2018-06-22 11:15:19 +02:00
|
|
|
ChannelName *string
|
2017-11-30 09:07:04 -05:00
|
|
|
ChannelDisplayName *string
|
2018-03-09 10:30:05 -05:00
|
|
|
ChannelType *string
|
2017-11-30 09:07:04 -05:00
|
|
|
|
|
|
|
|
UserId *string
|
|
|
|
|
UserEmail *string
|
2018-02-07 09:02:46 -05:00
|
|
|
Username *string
|
2019-05-23 13:33:18 +03:00
|
|
|
IsBot bool
|
2017-11-30 09:07:04 -05:00
|
|
|
|
2018-06-22 11:15:19 +02:00
|
|
|
PostId *string
|
|
|
|
|
PostCreateAt *int64
|
|
|
|
|
PostMessage *string
|
|
|
|
|
PostType *string
|
2018-07-03 16:33:10 +02:00
|
|
|
PostRootId *string
|
2019-06-14 18:36:38 +03:00
|
|
|
PostProps *string
|
2018-06-22 11:15:19 +02:00
|
|
|
PostOriginalId *string
|
|
|
|
|
PostFileIds StringArray
|
2017-11-30 09:07:04 -05:00
|
|
|
}
|