UNPKG

svix

Version:

Svix webhooks API client and webhook verification library

18 lines (17 loc) 485 B
export interface PollingEndpointMessageOut { channels?: string[] | null; deliverAt?: Date | null; eventId?: string | null; eventType: string; headers?: { [key: string]: string; } | null; id: string; payload: any; tags?: string[] | null; timestamp: Date; } export declare const PollingEndpointMessageOutSerializer: { _fromJsonObject(object: any): PollingEndpointMessageOut; _toJsonObject(self: PollingEndpointMessageOut): any; };