summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/RetentionActionType.php
blob: 285ad7bcfbba7c033429abe1f05980755e2533f0 (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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?php
/**
 * Contains \jamesiarmes\PhpEws\Enumeration\RetentionActionType.
 */

namespace jamesiarmes\PhpEws\Enumeration;

use \jamesiarmes\PhpEws\Enumeration;

/**
 * Defines the action performed on items with the retention tag.
 *
 * @package php-ews\Enumeration
 */
class RetentionActionType extends Enumeration
{
    /**
     * The item is deleted and put into the Dumpster.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    const DELETE_AND_ALLOW_RECOVERY = 'DeleteAndAllowRecovery';

    /**
     * The item is marked as having exceeded the retention time limit.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    const MARK_AS_PAST_RETENTION_LIMIT = 'MarkAsPastRetentionLimit';

    /**
     * The item is moved to the archive mailbox.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    const MOVE_TO_ARCHIVE = 'MoveToArchive';

    /**
     * The item is moved to the default Deleted Items folder.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    const MOVE_TO_DELETED_ITEMS = 'MoveToDeletedItems';

    /**
     * The item is moved to a specified folder.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    const MOVE_TO_FOLDER = 'MoveToFolder';

    /**
     * No action is performed on the item.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    const NONE = 'None';

    /**
     * The item is permanently deleted from the mailbox.
     *
     * @since Exchange 2013
     *
     * @var string
     */
    const PERMANENTLY_DELETE = 'PermanentlyDelete';
}