svix
Version:
Svix webhooks API client and webhook verification library
10 lines (9 loc) • 327 B
TypeScript
import { type MessageAttemptLog } from "./messageAttemptLog";
export interface MessageAttemptLogEvent {
data: MessageAttemptLog[];
type: string;
}
export declare const MessageAttemptLogEventSerializer: {
_fromJsonObject(object: any): MessageAttemptLogEvent;
_toJsonObject(self: MessageAttemptLogEvent): any;
};