Skip to content

Commit 8cc5f2e

Browse files
Update generated files with build 848060 (#119)
1 parent 7518cbf commit 8cc5f2e

File tree

209 files changed

+4282
-352
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

209 files changed

+4282
-352
lines changed

src/Model/ActivityHistoryItem.php

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ class ActivityHistoryItem extends Entity
2828
{
2929
/**
3030
* Gets the status
31+
* Set by the server. A status code used to identify valid objects. Values: active, updated, deleted, ignored.
3132
*
3233
* @return Status The status
3334
*/
@@ -46,6 +47,7 @@ public function getStatus()
4647

4748
/**
4849
* Sets the status
50+
* Set by the server. A status code used to identify valid objects. Values: active, updated, deleted, ignored.
4951
*
5052
* @param Status $val The status
5153
*
@@ -59,6 +61,7 @@ public function setStatus($val)
5961

6062
/**
6163
* Gets the activeDurationSeconds
64+
* Optional. The duration of active user engagement. if not supplied, this is calculated from the startedDateTime and lastActiveDateTime.
6265
*
6366
* @return int The activeDurationSeconds
6467
*/
@@ -73,6 +76,7 @@ public function getActiveDurationSeconds()
7376

7477
/**
7578
* Sets the activeDurationSeconds
79+
* Optional. The duration of active user engagement. if not supplied, this is calculated from the startedDateTime and lastActiveDateTime.
7680
*
7781
* @param int $val The activeDurationSeconds
7882
*
@@ -86,6 +90,7 @@ public function setActiveDurationSeconds($val)
8690

8791
/**
8892
* Gets the createdDateTime
93+
* Set by the server. DateTime in UTC when the object was created on the server.
8994
*
9095
* @return \DateTime The createdDateTime
9196
*/
@@ -104,6 +109,7 @@ public function getCreatedDateTime()
104109

105110
/**
106111
* Sets the createdDateTime
112+
* Set by the server. DateTime in UTC when the object was created on the server.
107113
*
108114
* @param \DateTime $val The createdDateTime
109115
*
@@ -117,6 +123,7 @@ public function setCreatedDateTime($val)
117123

118124
/**
119125
* 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.
120127
*
121128
* @return \DateTime The lastActiveDateTime
122129
*/
@@ -135,6 +142,7 @@ public function getLastActiveDateTime()
135142

136143
/**
137144
* 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.
138146
*
139147
* @param \DateTime $val The lastActiveDateTime
140148
*
@@ -148,6 +156,7 @@ public function setLastActiveDateTime($val)
148156

149157
/**
150158
* Gets the lastModifiedDateTime
159+
* Set by the server. DateTime in UTC when the object was modified on the server.
151160
*
152161
* @return \DateTime The lastModifiedDateTime
153162
*/
@@ -166,6 +175,7 @@ public function getLastModifiedDateTime()
166175

167176
/**
168177
* Sets the lastModifiedDateTime
178+
* Set by the server. DateTime in UTC when the object was modified on the server.
169179
*
170180
* @param \DateTime $val The lastModifiedDateTime
171181
*
@@ -179,6 +189,7 @@ public function setLastModifiedDateTime($val)
179189

180190
/**
181191
* Gets the expirationDateTime
192+
* Optional. UTC DateTime when the historyItem will undergo hard-delete. Can be set by the client.
182193
*
183194
* @return \DateTime The expirationDateTime
184195
*/
@@ -197,6 +208,7 @@ public function getExpirationDateTime()
197208

198209
/**
199210
* Sets the expirationDateTime
211+
* Optional. UTC DateTime when the historyItem will undergo hard-delete. Can be set by the client.
200212
*
201213
* @param \DateTime $val The expirationDateTime
202214
*
@@ -210,6 +222,7 @@ public function setExpirationDateTime($val)
210222

211223
/**
212224
* Gets the startedDateTime
225+
* Required. UTC DateTime when the historyItem (activity session) was started. Required for timeline history.
213226
*
214227
* @return \DateTime The startedDateTime
215228
*/
@@ -228,6 +241,7 @@ public function getStartedDateTime()
228241

229242
/**
230243
* Sets the startedDateTime
244+
* Required. UTC DateTime when the historyItem (activity session) was started. Required for timeline history.
231245
*
232246
* @param \DateTime $val The startedDateTime
233247
*
@@ -241,6 +255,7 @@ public function setStartedDateTime($val)
241255

242256
/**
243257
* 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.
244259
*
245260
* @return string The userTimezone
246261
*/
@@ -255,6 +270,7 @@ public function getUserTimezone()
255270

256271
/**
257272
* 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.
258274
*
259275
* @param string $val The userTimezone
260276
*
@@ -268,6 +284,7 @@ public function setUserTimezone($val)
268284

269285
/**
270286
* Gets the activity
287+
* Optional. NavigationProperty/Containment; navigation property to the associated activity.
271288
*
272289
* @return UserActivity The activity
273290
*/
@@ -286,6 +303,7 @@ public function getActivity()
286303

287304
/**
288305
* Sets the activity
306+
* Optional. NavigationProperty/Containment; navigation property to the associated activity.
289307
*
290308
* @param UserActivity $val The activity
291309
*

0 commit comments

Comments
 (0)