UNPKG

svix

Version:

Svix webhooks API client and webhook verification library

17 lines (14 loc) 330 B
// this file is @generated /** Defines the ordering in a listing of results. */ export enum Ordering { Ascending = "ascending", Descending = "descending", } export const OrderingSerializer = { _fromJsonObject(object: any): Ordering { return object; }, _toJsonObject(self: Ordering): any { return self; }, };