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/Api/UsersApi.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -465,7 +465,7 @@ public function setLastModifiedSince(?string $last_modified_since): self
465
465
return$this;
466
466
}
467
467
/**
468
-
* $include_ds_groups Select users with groups the users belong to; The organization must have entitlement AllowMultiApplication enabled.
468
+
* $include_ds_groups Select users with groups the users belong to; account_id must be specified. The organization must have the entitlement AllowMultiApplication enabled.
469
469
* @var ?bool
470
470
*/
471
471
protected ?bool$include_ds_groups = null;
@@ -482,7 +482,7 @@ public function getIncludeDsGroups(): ?bool
482
482
483
483
/**
484
484
* Sets include_ds_groups
485
-
* @param ?bool $include_ds_groups Select users with groups the users belong to; The organization must have entitlement AllowMultiApplication enabled.
485
+
* @param ?bool $include_ds_groups Select users with groups the users belong to; account_id must be specified. The organization must have the entitlement AllowMultiApplication enabled.
if (!is_null($this->container['updated_by_type']) && !in_array($this->container['updated_by_type'], $allowedValues, true)) {
491
+
if (!is_null($this->container['updated_by_type']) && !in_array($this->container['updated_by_type'], $allowedValues, false)) {
492
492
$invalidProperties[] = sprintf(
493
493
"invalid value for 'updated_by_type', must be one of '%s'",
494
494
implode("', '", $allowedValues)
@@ -1107,7 +1107,7 @@ public function setCreatedBy($created_by)
1107
1107
/**
1108
1108
* Gets created_by_type
1109
1109
*
1110
-
* @return ?string
1110
+
* @return ?int
1111
1111
*/
1112
1112
publicfunctiongetCreatedByType()
1113
1113
{
@@ -1117,14 +1117,14 @@ public function getCreatedByType()
1117
1117
/**
1118
1118
* Sets created_by_type
1119
1119
*
1120
-
* @param ?string $created_by_type created_by_type
1120
+
* @param ?int $created_by_type 0 stands for Application, 1 stands for User, 2 stands for Generic, 3 stands for RestAPIAuth, 4 stands for Resource, 5 stands for Restricted
if (!is_null($created_by_type) && !in_array($created_by_type, $allowedValues, true)) {
1127
+
if (!is_null($created_by_type) && !in_array($created_by_type, $allowedValues, false)) {
1128
1128
thrownew \InvalidArgumentException(
1129
1129
sprintf(
1130
1130
"Invalid value for 'created_by_type', must be one of '%s'",
@@ -1188,7 +1188,7 @@ public function setUpdatedBy($updated_by)
1188
1188
/**
1189
1189
* Gets updated_by_type
1190
1190
*
1191
-
* @return ?string
1191
+
* @return ?int
1192
1192
*/
1193
1193
publicfunctiongetUpdatedByType()
1194
1194
{
@@ -1198,14 +1198,14 @@ public function getUpdatedByType()
1198
1198
/**
1199
1199
* Sets updated_by_type
1200
1200
*
1201
-
* @param ?string $updated_by_type updated_by_type
1201
+
* @param ?int $updated_by_type 0 stands for Application, 1 stands for User, 2 stands for Generic, 3 stands for RestAPIAuth, 4 stands for Resource, 5 stands for Restricted
0 commit comments