UNPKG

svix

Version:

Svix webhooks API client and webhook verification library

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