Interface ExternalEventPull

interface ExternalEventPull {
    id: string;
    userId: string;
    user?: Customer;
    externalEventSubscriptionId: string;
    externalEventSubscription?: ExternalEventSubscription;
    integrationId: string;
    integration?: Integration;
    connectionId: string;
    connection?: Connection;
    startDatetime: string;
    endDatetime: string;
    isFullScan?: boolean;
    status: ExternalEventPullStatus;
    collectedEventIds: string[];
    error?: ErrorData;
}

Properties

id: string
userId: string
user?: Customer
externalEventSubscriptionId: string
externalEventSubscription?: ExternalEventSubscription
integrationId: string
integration?: Integration
connectionId: string
connection?: Connection
startDatetime: string
endDatetime: string
isFullScan?: boolean
collectedEventIds: string[]
error?: ErrorData