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

namespace jamesiarmes\PhpEws\Enumeration;

use \jamesiarmes\PhpEws\Enumeration;

/**
 * Defines the type of action for a mailbox hold.
 *
 * @package php-ews\Enumeration
 */
class HoldActionType extends Enumeration
{
    /**
     * Indicates that a mailbox hold will be created.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    const CREATE = 'Create';

    /**
     * Indicates that a mailbox hold will be removed.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    const REMOVE = 'Remove';

    /**
     * Indicates that a mailbox hold will be updated.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    const UPDATE = 'Update';
}