type Event[T interface{ ID() string }] struct {
SpecVersion string `json:"specversion"`
Type string `json:"type"`
Source string `json:"source"`
Time time.Time `json:"time"`
ID string `json:"id"`
DataContentType string `json:"datacontenttype"`
Data T `json:"data"`
}