mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-04-06 00:32:12 +02:00
17 lines
332 B
TypeScript
17 lines
332 B
TypeScript
enum WhatsAppStatus {
|
|
Success = "Success",
|
|
Sent = "Sent",
|
|
Delivered = "Delivered",
|
|
Read = "Read",
|
|
Failed = "Failed",
|
|
Deleted = "Deleted",
|
|
Warning = "Warning",
|
|
Queued = "Queued",
|
|
Error = "Error",
|
|
LowBalance = "Low Balance",
|
|
NotVerified = "Not Verified",
|
|
Unknown = "Unknown",
|
|
}
|
|
|
|
export default WhatsAppStatus;
|