validops-east-1's picture
restructure repo into production layout; add whatsapp-service, tests, ddl, docs, scripts; scrub hardcoded secrets
83d6851
Raw
History Blame Contribute Delete
349 Bytes
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"`
}