summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Enumeration/FlaggedForActionType.php
blob: e35998107737c3e4a1213d82317afff42ca9378d (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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<?php
/**
 * Contains \jamesiarmes\PhpEws\Enumeration\FlaggedForActionType.
 */

namespace jamesiarmes\PhpEws\Enumeration;

use \jamesiarmes\PhpEws\Enumeration;

/**
 * Specifies the flag for action value that must appear on incoming messages in
 * order for the condition or exception to apply.
 *
 * @package php-ews\Enumeration
 */
class FlaggedForActionType extends Enumeration
{
    /**
     * Indicates that the message may contain any flag.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const ANY = 'Any';

    /**
     * Indicates that the message has been flagged for a call.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const CALL = 'Call';

    /**
     * Indicates that the message is not to be forwarded.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const DO_NOT_FORWARD = 'DoNotForward';

    /**
     * Indicates that the message has been flagged for a follow up.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const FOLLOW_UP = 'FollowUp';

    /**
     * Indicates that the message is to be forwarded.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const FORWARD = 'Forward';

    /**
     * Indicates that the message has been flagged as FYI.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const FYI = 'FYI';

    /**
     * Indicates that the message does not require a response.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const NO_RESPONSE_NECESSARY = 'NoResponseNecessary';

    /**
     * Indicates that the message is to be read.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const READ = 'Read';

    /**
     * Indicates that the message needs a reply.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const REPLY = 'Reply';

    /**
     * Indicates that the message needs a reply to all recipients.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const REPLY_TO_ALL = 'ReplyToAll';

    /**
     * Indicates that the message has been flagged for review.
     *
     * @since Exchange 2010
     *
     * @var string
     */
    const REVIEW = 'Review';
}