Interface Event

Base model of an event (e.g. webhook or email)

interface Event {
    checkpoint?: string;
    suppressMultipleExecutions?: boolean;
    type?: EventType;
}

Hierarchy (view full)

Properties

checkpoint?: string
suppressMultipleExecutions?: boolean
type?: EventType