github.com/rajatvaryani/mattermost-server@v5.11.1+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  	TeamId          *string
     8  	TeamName        *string
     9  	TeamDisplayName *string
    10  
    11  	ChannelId          *string
    12  	ChannelName        *string
    13  	ChannelDisplayName *string
    14  	ChannelType        *string
    15  
    16  	UserId    *string
    17  	UserEmail *string
    18  	Username  *string
    19  
    20  	PostId         *string
    21  	PostCreateAt   *int64
    22  	PostMessage    *string
    23  	PostType       *string
    24  	PostRootId     *string
    25  	PostOriginalId *string
    26  	PostFileIds    StringArray
    27  }