Interface TriggerEvent

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

interface TriggerEvent {
    caseId?: string;
    checkpoint?: string;
    customBody?: string;
    customerId?: string;
    projectId?: string;
    suppressMultipleExecutions?: boolean;
    type?: EventType;
}

Hierarchy (view full)

Properties

caseId?: string
checkpoint?: string
customBody?: string
customerId?: string
projectId?: string
suppressMultipleExecutions?: boolean
type?: EventType