appwrite/src/Appwrite/Messaging/Status.php
2024-02-02 17:53:19 +13:00

27 lines
520 B
PHP

<?php
namespace Appwrite\Messaging;
class Status
{
/**
* Message that is not ready to be sent
*/
public const DRAFT = 'draft';
/**
* Scheduled to be sent for a later time
*/
public const SCHEDULED = 'scheduled';
/**
* Picked up by the worker and starting to send
*/
public const PROCESSING = 'processing';
/**
* Sent without errors
*/
public const SENT = 'sent';
/**
* Sent with some errors
*/
public const FAILED = 'failed';
}