package model import ( "time" "github.com/google/uuid" ) // Message represents all information about a message. TenantID and OrganizationName are the same. // TenantID will be deprecated in favor of the better named OrganizationName type Message struct { ID uuid.UUID Type string FilePath string Payload []byte TenantID string OrganizationName string OrganizationID string SiteID string SiteName string CreatedAt time.Time Signature string }