May this helps you. The below is the structure for post event.
type Post struct {
Id string json:"id"
CreateAt int64 json:"create_at"
UpdateAt int64 json:"update_at"
DeleteAt int64 json:"delete_at"
UserId string json:"user_id"
ChannelId string json:"channel_id"
RootId string json:"root_id"
ParentId string json:"parent_id"
OriginalId string json:"original_id"
Message string json:"message"
Type string json:"type"
Props StringInterface json:"props"
Hashtags string json:"hashtags"
Filenames StringArray json:"filenames"
PendingPostId string json:"pending_post_id" db:"-"
}