Module type Model_intf.EVENT

module type EVENT = sig .. end
Represents a single event- must be protobuf capable, comparable, and pretty printable

type t 
val from_protobuf : Protobuf.Decoder.t -> t
val to_protobuf : t -> Protobuf.Encoder.t -> unit
val pp : Format.formatter -> t -> unit
val show : t -> string
val compare : t -> t -> int
include Events_common.EVENT