github.com/vnforks/kid/v5@v5.22.1-0.20200408055009-b89d99c65676/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  	BranchId          *string
     8  	BranchName        *string
     9  	BranchDisplayName *string
    10  
    11  	ClassId          *string
    12  	ClassName        *string
    13  	ClassDisplayName *string
    14  	ClassType        *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  }