mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* MM-8810: Add CSV Compliance export * Only allowing to schedule actiances export throught the cli * De-duplicating some code * Fixes on texts * Fixes on translations
27 lines
552 B
Go
27 lines
552 B
Go
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
package model
|
|
|
|
type MessageExport struct {
|
|
TeamId *string
|
|
TeamName *string
|
|
TeamDisplayName *string
|
|
|
|
ChannelId *string
|
|
ChannelName *string
|
|
ChannelDisplayName *string
|
|
ChannelType *string
|
|
|
|
UserId *string
|
|
UserEmail *string
|
|
Username *string
|
|
|
|
PostId *string
|
|
PostCreateAt *int64
|
|
PostMessage *string
|
|
PostType *string
|
|
PostOriginalId *string
|
|
PostFileIds StringArray
|
|
}
|