github.com/mattermosttest/mattermost-server/v5@v5.0.0-20200917143240-9dfa12e121f9/model/message_export.go (about)

     1  // Copyright (c) 2015-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  	IsBot     bool
    20  
    21  	PostId         *string
    22  	PostCreateAt   *int64
    23  	PostUpdateAt   *int64
    24  	PostDeleteAt   *int64
    25  	PostMessage    *string
    26  	PostType       *string
    27  	PostRootId     *string
    28  	PostProps      *string
    29  	PostOriginalId *string
    30  	PostFileIds    StringArray
    31  }