Skip to content

Commit eb4cb28

Browse files
Update generated files with build 941133 (#132)
Added comments to: * New feature - Added TransitiveMemberOf accessors to Device. * New feature - Added TransitiveMemberOf and TransitiveMembers accessors to Group. * New feature - Added EmployeeId, FaxNumber, OtherMails, ShowInAddressList, TransitiveMemberOf, and OnPremisesDistinguishedName accessors to User. * New feature - Added EdgeSendIntranetTrafficToInternetExplorer accessor to Windows10GenerationConfiguration. * Change - Added comments to DataPolicyOperation. * Change - Added comments to Group. * Change - Added comments to Message. * Change - Added comments to Organization.
1 parent fc339fd commit eb4cb28

File tree

7 files changed

+346
-52
lines changed

7 files changed

+346
-52
lines changed

src/Model/DataPolicyOperation.php

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ class DataPolicyOperation extends Entity
2828
{
2929
/**
3030
* Gets the completedDateTime
31+
* Represents when the request for this data policy operation was completed, in UTC time, using the ISO 8601 format. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'. Null until the operation completes.
3132
*
3233
* @return \DateTime The completedDateTime
3334
*/
@@ -46,6 +47,7 @@ public function getCompletedDateTime()
4647

4748
/**
4849
* Sets the completedDateTime
50+
* Represents when the request for this data policy operation was completed, in UTC time, using the ISO 8601 format. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'. Null until the operation completes.
4951
*
5052
* @param \DateTime $val The completedDateTime
5153
*
@@ -59,6 +61,7 @@ public function setCompletedDateTime($val)
5961

6062
/**
6163
* Gets the status
64+
* Possible values are: notStarted, running, complete, failed, unknownFutureValue.
6265
*
6366
* @return DataPolicyOperationStatus The status
6467
*/
@@ -77,6 +80,7 @@ public function getStatus()
7780

7881
/**
7982
* Sets the status
83+
* Possible values are: notStarted, running, complete, failed, unknownFutureValue.
8084
*
8185
* @param DataPolicyOperationStatus $val The status
8286
*
@@ -90,6 +94,7 @@ public function setStatus($val)
9094

9195
/**
9296
* Gets the storageLocation
97+
* The URL location to where data is being exported for export requests.
9398
*
9499
* @return string The storageLocation
95100
*/
@@ -104,6 +109,7 @@ public function getStorageLocation()
104109

105110
/**
106111
* Sets the storageLocation
112+
* The URL location to where data is being exported for export requests.
107113
*
108114
* @param string $val The storageLocation
109115
*
@@ -117,6 +123,7 @@ public function setStorageLocation($val)
117123

118124
/**
119125
* Gets the userId
126+
* The id for the user on whom the operation is performed.
120127
*
121128
* @return string The userId
122129
*/
@@ -131,6 +138,7 @@ public function getUserId()
131138

132139
/**
133140
* Sets the userId
141+
* The id for the user on whom the operation is performed.
134142
*
135143
* @param string $val The userId
136144
*
@@ -144,6 +152,7 @@ public function setUserId($val)
144152

145153
/**
146154
* Gets the submittedDateTime
155+
* Represents when the request for this data operation was submitted, in UTC time, using the ISO 8601 format. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'
147156
*
148157
* @return \DateTime The submittedDateTime
149158
*/
@@ -162,6 +171,7 @@ public function getSubmittedDateTime()
162171

163172
/**
164173
* Sets the submittedDateTime
174+
* Represents when the request for this data operation was submitted, in UTC time, using the ISO 8601 format. For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z'
165175
*
166176
* @param \DateTime $val The submittedDateTime
167177
*
@@ -175,6 +185,7 @@ public function setSubmittedDateTime($val)
175185

176186
/**
177187
* Gets the progress
188+
* Specifies the progress of an operation.
178189
*
179190
* @return float The progress
180191
*/
@@ -189,6 +200,7 @@ public function getProgress()
189200

190201
/**
191202
* Sets the progress
203+
* Specifies the progress of an operation.
192204
*
193205
* @param float $val The progress
194206
*

src/Model/Device.php

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -561,6 +561,34 @@ public function setRegisteredUsers($val)
561561
}
562562

563563

564+
/**
565+
* Gets the transitiveMemberOf
566+
*
567+
* @return array The transitiveMemberOf
568+
*/
569+
public function getTransitiveMemberOf()
570+
{
571+
if (array_key_exists("transitiveMemberOf", $this->_propDict)) {
572+
return $this->_propDict["transitiveMemberOf"];
573+
} else {
574+
return null;
575+
}
576+
}
577+
578+
/**
579+
* Sets the transitiveMemberOf
580+
*
581+
* @param DirectoryObject $val The transitiveMemberOf
582+
*
583+
* @return Device
584+
*/
585+
public function setTransitiveMemberOf($val)
586+
{
587+
$this->_propDict["transitiveMemberOf"] = $val;
588+
return $this;
589+
}
590+
591+
564592
/**
565593
* Gets the extensions
566594
* The collection of open extensions defined for the device. Read-only. Nullable.

0 commit comments

Comments
 (0)