2019-11-29 12:59:40 +01:00
|
|
|
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
|
|
|
// See LICENSE.txt for license information.
|
2017-11-30 09:07:04 -05:00
|
|
|
|
|
|
|
|
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
|
2019-09-13 18:18:06 -04:00
|
|
|
PostUpdateAt *int64
|
2019-10-31 09:31:18 -07:00
|
|
|
PostDeleteAt *int64
|
2018-06-22 11:15:19 +02:00
|
|
|
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
|
|
|
}
|