UNPKG

svix

Version:

Svix webhooks API client and webhook verification library

20 lines (16 loc) 350 B
// this file is @generated export interface OtelTracingPatchConfig { url?: string; } export const OtelTracingPatchConfigSerializer = { _fromJsonObject(object: any): OtelTracingPatchConfig { return { url: object["url"], }; }, _toJsonObject(self: OtelTracingPatchConfig): any { return { url: self.url, }; }, };