svix
Version:
Svix webhooks API client and webhook verification library
26 lines (23 loc) • 412 B
text/typescript
// this file is @generated
/**
* The sending status of the message:
*
* - Success = 0
* - Pending = 1
* - Fail = 2
* - Sending = 3
*/
export enum MessageStatus {
Success = 0,
Pending = 1,
Fail = 2,
Sending = 3,
}
export const MessageStatusSerializer = {
_fromJsonObject(object: any): MessageStatus {
return object;
},
_toJsonObject(self: MessageStatus): any {
return self;
},
};