UNPKG

svix

Version:

Svix webhooks API client and webhook verification library

19 lines (15 loc) 344 B
// this file is @generated export enum MessageStatusText { Success = "success", Pending = "pending", Fail = "fail", Sending = "sending", } export const MessageStatusTextSerializer = { _fromJsonObject(object: any): MessageStatusText { return object; }, _toJsonObject(self: MessageStatusText): any { return self; }, };