summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/MessageTrackingDeliveryStatusType.php
blob: 5965e5cf404d7115db418eca6567c537cdc0af66 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?php
/**
 * Contains \jamesiarmes\PhpEws\Enumeration\MessageTrackingDeliveryStatusType.
 */

namespace jamesiarmes\PhpEws\Enumeration;

use \jamesiarmes\PhpEws\Enumeration;

/**
 * Defines the status for a message.
 *
 * @package php-ews\Enumeration
 */
class MessageTrackingDeliveryStatusType extends Enumeration
{
    /**
     * Specifies that the message was delivered to all of the specified
     * recipients.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const DELIVERED = 'Delivered';

    /**
     * Specifies that the message is waiting for approval from a moderator.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const PENDING = 'Pending';

    /**
     * Specifies that the message was delivered and read by the recipients.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const READ = 'Read';

    /**
     * Specifies that the message was transferred to a server outside the search
     * scope.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const TRANSFERRED = 'Transferred';

    /**
     * Specifies that a message was not delivered.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const UNSUCCESSFUL = 'Unsuccessful';
}