summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo/exchange-includes/jamesiarmes/PhpEws/Type/TaskType.php
blob: 7d23fed8a2a19b9079782caf810b4260440b0e63 (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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
<?php
/**
 * Contains \jamesiarmes\PhpEws\Type\TaskType.
 */

namespace jamesiarmes\PhpEws\Type;

/**
 * Represents a task in the Exchange store.
 *
 * @package php-ews\Type
 */
class TaskType extends ItemType
{
    /**
     * Represents the actual amount of time that is spent on a task.
     *
     * @since Exchange 2007
     *
     * @var integer
     */
    public $ActualWork;

    /**
     * Represents the time when a task is assigned to a contact.
     *
     * @since Exchange 2007
     *
     * @var string
     *
     * @todo Make a DateTime object.
     */
    public $AssignedTime;

    /**
     * Holds billing information for a task.
     *
     * @since Exchange 2007
     *
     * @var string
     */
    public $BillingInformation;

    /**
     * Specifies the version of the task.
     *
     * @since Exchange 2007
     *
     * @var integer
     */
    public $ChangeCount;

    /**
     * Represents the collection of companies that are associated with a contact
     * or task.
     *
     * @since Exchange 2007
     *
     * @var \jamesiarmes\PhpEws\ArrayType\ArrayOfStringsType
     */
    public $Companies;

    /**
     * Represents the date on which a task is completed.
     *
     * @since Exchange 2007
     *
     * @var string
     *
     * @todo Make a DateTime object.
     */
    public $CompleteDate;

    /**
     * Contains a list of contacts that are associated with a task.
     *
     * @since Exchange 2007
     *
     * @var \jamesiarmes\PhpEws\ArrayType\ArrayOfStringsType
     */
    public $Contacts;

    /**
     * Represents the status of a delegated task.
     *
     * This is a read-only property.
     *
     * @since Exchange 2007
     *
     * @var string
     *
     * @see \jamesiarmes\PhpEws\Enumeration\TaskDelegateStateType
     */
    public $DelegationState;

    /**
     * Contains the name of the delegator who assigned the task.
     *
     * @since Exchange 2007
     *
     * @var string
     */
    public $Delegator;

    /**
     * Represents the date when a task item is due.
     *
     * @since Exchange 2007
     *
     * @var string
     *
     * @todo Make a DateTime object.
     */
    public $DueDate;

    /**
     * Indicates whether the task is editable or not.
     *
     * The following values are possible:
     * - 0: The default for all task items.
     * - 1: A task request.
     * - 2: A task acceptance from a recipient of a task request.
     * - 3: A task declination from a recipient of a task request.
     * - 4: An update to a previous task request.
     * - 5: Not used.
     *
     * This element is read-only.
     *
     * @since Exchange 2007
     *
     * @var integer
     */
    public $IsAssignmentEditable;

    /**
     * Indicates whether the task has been completed or not.
     *
     * @since Exchange 2007
     *
     * @var boolean
     */
    public $IsComplete;

    /**
     * Indicates whether a task is part of a recurring item.
     *
     * This element is read-only.
     *
     * @since Exchange 2007
     *
     * @var boolean
     */
    public $IsRecurring;

    /**
     * Indicates whether the task is owned by a team or not.
     *
     * @since Exchange 2007
     *
     * @var boolean
     */
    public $IsTeamTask;

    /**
     * Represents mileage for a task item.
     *
     * @since Exchange 2007
     *
     * @var string
     */
    public $Mileage;

    /**
     * Represents the owner of a task.
     *
     * This is a read-only property.
     *
     * @since Exchange 2007
     *
     * @var string
     */
    public $Owner;

    /**
     * Describes the completion status of a task.
     *
     * @since Exchange 2007
     *
     * @var float
     */
    public $PercentComplete;

    /**
     * Contains recurrence information for recurring tasks.
     *
     * @since Exchange 2007
     *
     * @var \jamesiarmes\PhpEws\Type\RecurrenceType
     */
    public $Recurrence;

    /**
     * Represents the start date of a task item.
     *
     * @since Exchange 2007
     *
     * @var string
     *
     * @todo Make a DateTime object.
     */
    public $StartDate;

    /**
     * Represents the status of a task item.
     *
     * @since Exchange 2007
     *
     * @var string
     *
     * @see \jamesiarmes\PhpEws\Enumeration\TaskStatusType
     */
    public $Status;

    /**
     * Contains an explanation of the task status.
     *
     * This is a read-only property.
     *
     * @since Exchange 2007
     *
     * @var string
     */
    public $StatusDescription;

    /**
     * Contains a description of how much work is associated with an item.
     *
     * @since Exchange 2007
     *
     * @var integer
     */
    public $TotalWork;
}