appwrite/src/Appwrite/Messaging/Status.php

28 lines
520 B
PHP
Raw Normal View History

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