Matrix/entities/event/event.go

11 lines
300 B
Go
Raw Normal View History

2020-09-28 20:37:02 +00:00
package event
type Event struct {
Id string `json:"id,omitempty"`
RoomId string `json:"roomId,omitempty"`
EventType string `json:"eventType,omitempty"`
Content string `json:"content,omitempty"`
Parent string `json:"parent,omitempty"`
Depth int `json:"depth,omitempty"`
}