UNPKG

svix

Version:

Svix webhooks API client and webhook verification library

35 lines (31 loc) 891 B
// this file is @generated /* eslint @typescript-eslint/no-explicit-any: 0 */ /** Sent when an endpoint is created, updated, or deleted */ export interface EndpointCreatedEventData { /** The Application's ID. */ appId: string; /** The Application's UID. */ appUid?: string | null; /** The Endpoint's ID. */ endpointId: string; /** The Endpoint's UID. */ endpointUid?: string | null; } export const EndpointCreatedEventDataSerializer = { _fromJsonObject(object: any): EndpointCreatedEventData { return { appId: object["appId"], appUid: object["appUid"], endpointId: object["endpointId"], endpointUid: object["endpointUid"], }; }, _toJsonObject(self: EndpointCreatedEventData): any { return { appId: self.appId, appUid: self.appUid, endpointId: self.endpointId, endpointUid: self.endpointUid, }; }, };