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

namespace jamesiarmes\PhpEws\Enumeration;

use \jamesiarmes\PhpEws\Enumeration;

/**
 * Represents the status of a delegated task.
 *
 * @package php-ews\Enumeration
 */
class TaskDelegateStateType extends Enumeration
{
    /**
     * Indicates that the delegate has accepted the task.
     *
     * @since Exchange 2007
     *
     * @var string
     */
    const ACCEPTED = 'Accepted';

    /**
     * Indicates that the delegate has declined the task.
     *
     * @since Exchange 2007
     *
     * @var string
     */
    const DECLINED = 'Declined';

    /**
     * Indicates that the task request is out of bounds.
     *
     * This is an internal Outlook value and should not be used.
     *
     * @since Exchange 2007
     *
     * @var string
     */
    const MAX = 'Max';

    /**
     * Indicates that the task is not delegated or the task request has been
     * created but not sent.
     *
     * @since Exchange 2007
     *
     * @var string
     */
    const NO_MATCH = 'NoMatch';

    /**
     * Indicates that the task is a new task request that has been sent, but the
     * delegate has not yet responded.
     *
     * @since Exchange 2007
     *
     * @var string
     */
    const OWN_NEW = 'OwnNew';

    /**
     * Indicates that the task is owned.
     *
     * This value should not be used.
     *
     * @since Exchange 2007
     *
     * @var string
     */
    const OWNED = 'Owned';
}