svix
Version:
Svix webhooks API client and webhook verification library
14 lines (13 loc) • 474 B
TypeScript
import { type EndpointDisabledTrigger } from "./endpointDisabledTrigger";
export interface EndpointDisabledEventData {
appId: string;
appUid?: string | null;
endpointId: string;
endpointUid?: string | null;
failSince?: Date | null;
trigger?: EndpointDisabledTrigger;
}
export declare const EndpointDisabledEventDataSerializer: {
_fromJsonObject(object: any): EndpointDisabledEventData;
_toJsonObject(self: EndpointDisabledEventData): any;
};