File size: 349 Bytes
83d6851
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package message_model

import (
	"encoding/json"
)

type Message struct {
	Id        string          `json:"id"`
	MessageID string          `json:"message_id"`
	Timestamp string          `json:"timestamp"`
	Status    string          `json:"status"`
	Source    string          `json:"source"`
	Referral  json.RawMessage `json:"referral,omitempty"`
}