summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/HoldStatusType.php
blob: b1ec1285a7584847454fac06349a8b7f6479dfc9 (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
<?php
/**
 * Contains \jamesiarmes\PhpEws\Enumeration\HoldStatusType.
 */

namespace jamesiarmes\PhpEws\Enumeration;

use \jamesiarmes\PhpEws\Enumeration;

/**
 * Defines the hold status for a mailbox.
 *
 * @package php-ews\Enumeration
 */
class HoldStatusType extends Enumeration
{
    /**
     * Indicates that the hold on a mailbox has failed.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    const FAILED = 'Failed';

    /**
     * Indicates that the mailbox is not on hold.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    const NOT_ON_HOLD = 'NotOnHold';

    /**
     * Indicates that the mailbox is on hold.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    const ON_HOLD = 'OnHold';

    /**
     * Indicates that the mailbox is on a partial hold.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    const PARTIAL_HOLD = 'PartialHold';

    /**
     * Indicates that a hold on the mailbox is pending.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    const PENDING = 'Pending';
}