UNPKG

svix

Version:

Svix webhooks API client and webhook verification library

30 lines (27 loc) 569 B
// this file is @generated /* eslint @typescript-eslint/no-explicit-any: 0 */ /** * The different classes of HTTP status codes: * - CodeNone = 0 * - Code1xx = 100 * - Code2xx = 200 * - Code3xx = 300 * - Code4xx = 400 * - Code5xx = 500 */ export enum StatusCodeClass { CodeNone = 0, Code1xx = 100, Code2xx = 200, Code3xx = 300, Code4xx = 400, Code5xx = 500, } export const StatusCodeClassSerializer = { _fromJsonObject(object: any): StatusCodeClass { return object; }, _toJsonObject(self: StatusCodeClass): any { return self; }, };