Event with an identity or organization
Usage:
type MyEvent = EntityEvent<"myDomain.myDomainObject.someEvent", { field1: string, field2: Date}> Copy
type MyEvent = EntityEvent<"myDomain.myDomainObject.someEvent", { field1: string, field2: Date}>
The type of the event, should be unique within its domain
The event data for this specific event type and domain. It must be (de)seriable to/from JSON.
Event with an identity or organization
Usage: