UNPKG

svix

Version:

Svix webhooks API client and webhook verification library

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