UNPKG

svix

Version:

Svix webhooks API client and webhook verification library

24 lines (20 loc) 515 B
// this file is @generated export interface IntegrationUpdate { /** The set of feature flags the integration will have access to. */ featureFlags?: string[]; name: string; } export const IntegrationUpdateSerializer = { _fromJsonObject(object: any): IntegrationUpdate { return { featureFlags: object["featureFlags"], name: object["name"], }; }, _toJsonObject(self: IntegrationUpdate): any { return { featureFlags: self.featureFlags, name: self.name, }; }, };