mirror of
https://github.com/appwrite/appwrite
synced 2026-05-15 04:59:01 +00:00
27 lines
520 B
PHP
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';
|
|
}
|