github.com/dschalla/mattermost-server@v4.8.1-rc1+incompatible/model/message_export.go (about) 1 // Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved. 2 // See License.txt for license information. 3 4 package model 5 6 type MessageExport struct { 7 ChannelId *string 8 ChannelDisplayName *string 9 10 UserId *string 11 UserEmail *string 12 Username *string 13 14 PostId *string 15 PostCreateAt *int64 16 PostMessage *string 17 PostType *string 18 PostFileIds StringArray 19 }