UNPKG

svix

Version:

Svix webhooks API client and webhook verification library

20 lines (16 loc) 339 B
// this file is @generated export interface TelnyxConfig { publicKey: string; } export const TelnyxConfigSerializer = { _fromJsonObject(object: any): TelnyxConfig { return { publicKey: object["publicKey"], }; }, _toJsonObject(self: TelnyxConfig): any { return { publicKey: self.publicKey, }; }, };