Interface AppEvent

interface AppEvent {
    id: string;
    userId: string;
    user?: Customer;
    appEventTypeId: string;
    appEventType?: AppEventType;
    appEventSubscriptionId: string;
    appEventSubscription?: AppEventSubscription;
    event: any;
    datetime: string;
    launchedFlowRunIds: string[];
}

Properties

id: string
userId: string
user?: Customer
appEventTypeId: string
appEventType?: AppEventType
appEventSubscriptionId: string
appEventSubscription?: AppEventSubscription
event: any
datetime: string
launchedFlowRunIds: string[]