You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Model/ActivityHistoryItem.php
+18Lines changed: 18 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -28,6 +28,7 @@ class ActivityHistoryItem extends Entity
28
28
{
29
29
/**
30
30
* Gets the status
31
+
* Set by the server. A status code used to identify valid objects. Values: active, updated, deleted, ignored.
31
32
*
32
33
* @return Status The status
33
34
*/
@@ -46,6 +47,7 @@ public function getStatus()
46
47
47
48
/**
48
49
* Sets the status
50
+
* Set by the server. A status code used to identify valid objects. Values: active, updated, deleted, ignored.
49
51
*
50
52
* @param Status $val The status
51
53
*
@@ -59,6 +61,7 @@ public function setStatus($val)
59
61
60
62
/**
61
63
* Gets the activeDurationSeconds
64
+
* Optional. The duration of active user engagement. if not supplied, this is calculated from the startedDateTime and lastActiveDateTime.
62
65
*
63
66
* @return int The activeDurationSeconds
64
67
*/
@@ -73,6 +76,7 @@ public function getActiveDurationSeconds()
73
76
74
77
/**
75
78
* Sets the activeDurationSeconds
79
+
* Optional. The duration of active user engagement. if not supplied, this is calculated from the startedDateTime and lastActiveDateTime.
76
80
*
77
81
* @param int $val The activeDurationSeconds
78
82
*
@@ -86,6 +90,7 @@ public function setActiveDurationSeconds($val)
86
90
87
91
/**
88
92
* Gets the createdDateTime
93
+
* Set by the server. DateTime in UTC when the object was created on the server.
89
94
*
90
95
* @return \DateTime The createdDateTime
91
96
*/
@@ -104,6 +109,7 @@ public function getCreatedDateTime()
104
109
105
110
/**
106
111
* Sets the createdDateTime
112
+
* Set by the server. DateTime in UTC when the object was created on the server.
107
113
*
108
114
* @param \DateTime $val The createdDateTime
109
115
*
@@ -117,6 +123,7 @@ public function setCreatedDateTime($val)
117
123
118
124
/**
119
125
* Gets the lastActiveDateTime
126
+
* Optional. UTC DateTime when the historyItem (activity session) was last understood as active or finished - if null, historyItem status should be Ongoing.
120
127
*
121
128
* @return \DateTime The lastActiveDateTime
122
129
*/
@@ -135,6 +142,7 @@ public function getLastActiveDateTime()
135
142
136
143
/**
137
144
* Sets the lastActiveDateTime
145
+
* Optional. UTC DateTime when the historyItem (activity session) was last understood as active or finished - if null, historyItem status should be Ongoing.
138
146
*
139
147
* @param \DateTime $val The lastActiveDateTime
140
148
*
@@ -148,6 +156,7 @@ public function setLastActiveDateTime($val)
148
156
149
157
/**
150
158
* Gets the lastModifiedDateTime
159
+
* Set by the server. DateTime in UTC when the object was modified on the server.
151
160
*
152
161
* @return \DateTime The lastModifiedDateTime
153
162
*/
@@ -166,6 +175,7 @@ public function getLastModifiedDateTime()
166
175
167
176
/**
168
177
* Sets the lastModifiedDateTime
178
+
* Set by the server. DateTime in UTC when the object was modified on the server.
169
179
*
170
180
* @param \DateTime $val The lastModifiedDateTime
171
181
*
@@ -179,6 +189,7 @@ public function setLastModifiedDateTime($val)
179
189
180
190
/**
181
191
* Gets the expirationDateTime
192
+
* Optional. UTC DateTime when the historyItem will undergo hard-delete. Can be set by the client.
182
193
*
183
194
* @return \DateTime The expirationDateTime
184
195
*/
@@ -197,6 +208,7 @@ public function getExpirationDateTime()
197
208
198
209
/**
199
210
* Sets the expirationDateTime
211
+
* Optional. UTC DateTime when the historyItem will undergo hard-delete. Can be set by the client.
200
212
*
201
213
* @param \DateTime $val The expirationDateTime
202
214
*
@@ -210,6 +222,7 @@ public function setExpirationDateTime($val)
210
222
211
223
/**
212
224
* Gets the startedDateTime
225
+
* Required. UTC DateTime when the historyItem (activity session) was started. Required for timeline history.
213
226
*
214
227
* @return \DateTime The startedDateTime
215
228
*/
@@ -228,6 +241,7 @@ public function getStartedDateTime()
228
241
229
242
/**
230
243
* Sets the startedDateTime
244
+
* Required. UTC DateTime when the historyItem (activity session) was started. Required for timeline history.
231
245
*
232
246
* @param \DateTime $val The startedDateTime
233
247
*
@@ -241,6 +255,7 @@ public function setStartedDateTime($val)
241
255
242
256
/**
243
257
* Gets the userTimezone
258
+
* Optional. The timezone in which the user's device used to generate the activity was located at activity creation time. Values supplied as Olson IDs in order to support cross-platform representation.
244
259
*
245
260
* @return string The userTimezone
246
261
*/
@@ -255,6 +270,7 @@ public function getUserTimezone()
255
270
256
271
/**
257
272
* Sets the userTimezone
273
+
* Optional. The timezone in which the user's device used to generate the activity was located at activity creation time. Values supplied as Olson IDs in order to support cross-platform representation.
258
274
*
259
275
* @param string $val The userTimezone
260
276
*
@@ -268,6 +284,7 @@ public function setUserTimezone($val)
268
284
269
285
/**
270
286
* Gets the activity
287
+
* Optional. NavigationProperty/Containment; navigation property to the associated activity.
271
288
*
272
289
* @return UserActivity The activity
273
290
*/
@@ -286,6 +303,7 @@ public function getActivity()
286
303
287
304
/**
288
305
* Sets the activity
306
+
* Optional. NavigationProperty/Containment; navigation property to the associated activity.
0 commit comments