github.com/demisto/mattermost-server@v4.9.0-rc3+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 ChannelType *string 10 11 UserId *string 12 UserEmail *string 13 Username *string 14 15 PostId *string 16 PostCreateAt *int64 17 PostMessage *string 18 PostType *string 19 PostFileIds StringArray 20 }