summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/ConversationActionTypeType.php
blob: 9dc9eb90d6e0c736f65e8893aeeaafa5c3d106ff (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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<?php
/**
 * Contains \jamesiarmes\PhpEws\Enumeration\ConversationActionTypeType.
 */

namespace jamesiarmes\PhpEws\Enumeration;

use \jamesiarmes\PhpEws\Enumeration;

/**
 * Contains the action to perform on a conversation specified by a
 * ConversationId.
 *
 * @package php-ews\Enumeration
 */
class ConversationActionTypeType extends Enumeration
{
    /**
     * The current items and new items in the conversation will automatically be
     * set with the categories identified by the Categories property.
     *
     * @since Exchange 2010 SP1
     *
     * @var string
     */
    const ALWAYS_CATEGORIZE = 'AlwaysCategorize';

    /**
     * The current items and new items in the conversation will automatically be
     * deleted.
     *
     * The deletion mode is set by the DeleteType property.
     *
     * @since Exchange 2010 SP1
     *
     * @var string
     */
    const ALWAYS_DELETE = 'AlwaysDelete';

    /**
     * The current items and new items in the conversation will automatically be
     * moved to the folder identified by the DestinationFolderId property.
     *
     * @since Exchange 2010 SP1
     *
     * @var string
     */
    const ALWAYS_MOVE = 'AlwaysMove';

    /**
     * The current items in the conversation will be copied to the folder
     * identified by the DestinationFolderId property.
     *
     * Subsequent items in the conversation will not be copied.
     *
     * @since Exchange 2010 SP1
     *
     * @var string
     */
    const COPY = 'Copy';

    /**
     * The current items in the conversation will be deleted.
     *
     * Subsequent items in the conversation will not be deleted. The deletion
     * mode is set by the DeleteType property.
     *
     * @since Exchange 2010 SP1
     *
     * @var string
     */
    const DELETE = 'Delete';

    /**
     * The current items in the conversation will be moved to the folder
     * identified by the DestinationFolderId property.
     *
     * Subsequent items in the conversation will not be moved.
     *
     * @since Exchange 2010 SP1
     *
     * @var string
     */
    const MOVE = 'Move';

    /**
     * The current items in the conversation will have their read state set.
     *
     * The read state is set by the IsRead property.
     *
     * @since Exchange 2010 SP1
     *
     * @var string
     */
    const SET_READ_STATE = 'SetReadState';
}