UNPKG

svix

Version:

Svix webhooks API client and webhook verification library

29 lines (25 loc) 823 B
// this file is @generated /* eslint @typescript-eslint/no-explicit-any: 0 */ import { EndpointDisabledEventData, EndpointDisabledEventDataSerializer, } from "./endpointDisabledEventData"; /** Sent when an endpoint has been automatically disabled after continuous failures, or manually via an API call. */ export interface EndpointDisabledEvent { data: EndpointDisabledEventData; type: string; } export const EndpointDisabledEventSerializer = { _fromJsonObject(object: any): EndpointDisabledEvent { return { data: EndpointDisabledEventDataSerializer._fromJsonObject(object["data"]), type: object["type"], }; }, _toJsonObject(self: EndpointDisabledEvent): any { return { data: EndpointDisabledEventDataSerializer._toJsonObject(self.data), type: self.type, }; }, };