svix
Version:
Svix webhooks API client and webhook verification library
17 lines (16 loc) • 456 B
TypeScript
export interface PollingEndpointMessageOut {
channels?: string[] | 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;
};