1
0
Fork 0
mirror of synced 2024-07-02 05:00:33 +12:00

Merge branch '1.5.x' into feat-zoho-oauth

This commit is contained in:
Utkarsh Ahuja 2024-01-05 11:16:00 +05:30 committed by GitHub
commit 2bc4795d8e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,27 @@
<?php
namespace Appwrite\Enum;
enum MessageStatus: string
{
/**
* Message that is not ready to be sent
*/
case Draft = 'draft';
/**
* Scheduled to be sent for a later time
*/
case Scheduled = 'scheduled';
/**
* Picked up by the worker and starting to send
*/
case Processing = 'processing';
/**
* Sent without errors
*/
case Sent = 'sent';
/**
* Sent with some errors
*/
case Failed = 'failed';
}