UNPKG

svix

Version:

Svix webhooks API client and webhook verification library

23 lines (22 loc) 756 B
import { type MessageAttemptTriggerType } from "./messageAttemptTriggerType"; import { type MessageOut } from "./messageOut"; import { type MessageStatus } from "./messageStatus"; import { type MessageStatusText } from "./messageStatusText"; export interface MessageAttemptOut { endpointId: string; id: string; msg?: MessageOut | null; msgId: string; response: string; responseDurationMs: number; responseStatusCode: number; status: MessageStatus; statusText: MessageStatusText; timestamp: Date; triggerType: MessageAttemptTriggerType; url: string; } export declare const MessageAttemptOutSerializer: { _fromJsonObject(object: any): MessageAttemptOut; _toJsonObject(self: MessageAttemptOut): any; };