Skip to content

Commit

Permalink
Update generated files with build 110434
Browse files Browse the repository at this point in the history
  • Loading branch information
Microsoft Graph DevX Tooling authored and Microsoft Graph DevX Tooling committed Mar 21, 2023
1 parent f673796 commit 203970f
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 2 deletions.
27 changes: 27 additions & 0 deletions src/Model/AuthorizationPolicy.php
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,33 @@ public function setAllowInvitesFrom($val)
return $this;
}

/**
* Gets the allowUserConsentForRiskyApps
*
* @return bool|null The allowUserConsentForRiskyApps
*/
public function getAllowUserConsentForRiskyApps()
{
if (array_key_exists("allowUserConsentForRiskyApps", $this->_propDict)) {
return $this->_propDict["allowUserConsentForRiskyApps"];
} else {
return null;
}
}

/**
* Sets the allowUserConsentForRiskyApps
*
* @param bool $val The allowUserConsentForRiskyApps
*
* @return AuthorizationPolicy
*/
public function setAllowUserConsentForRiskyApps($val)
{
$this->_propDict["allowUserConsentForRiskyApps"] = boolval($val);
return $this;
}

/**
* Gets the blockMsolPowerShell
* To disable the use of MSOL PowerShell set this property to true. This will also disable user-based access to the legacy service endpoint used by MSOL PowerShell. This does not affect Azure AD Connect or Microsoft Graph.
Expand Down
2 changes: 2 additions & 0 deletions src/Model/DeletedTeam.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ class DeletedTeam extends Entity

/**
* Gets the channels
* The channels that are either shared with this deleted team or created in this deleted team.
*
* @return array|null The channels
*/
Expand All @@ -41,6 +42,7 @@ public function getChannels()

/**
* Sets the channels
* The channels that are either shared with this deleted team or created in this deleted team.
*
* @param Channel[] $val The channels
*
Expand Down
2 changes: 2 additions & 0 deletions src/Model/Teamwork.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ public function setWorkforceIntegrations($val)

/**
* Gets the deletedTeams
* The deleted team.
*
* @return array|null The deletedTeams
*/
Expand All @@ -69,6 +70,7 @@ public function getDeletedTeams()

/**
* Sets the deletedTeams
* The deleted team.
*
* @param DeletedTeam[] $val The deletedTeams
*
Expand Down
4 changes: 2 additions & 2 deletions src/Model/TeamworkTag.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class TeamworkTag extends Entity
{
/**
* Gets the description
* The description of the tag as it will appear to the user in Microsoft Teams.
* The description of the tag as it will appear to the user in Microsoft Teams. A teamworkTag can't have more than 200 teamworkTagMembers.
*
* @return string|null The description
*/
Expand All @@ -41,7 +41,7 @@ public function getDescription()

/**
* Sets the description
* The description of the tag as it will appear to the user in Microsoft Teams.
* The description of the tag as it will appear to the user in Microsoft Teams. A teamworkTag can't have more than 200 teamworkTagMembers.
*
* @param string $val The description
*
Expand Down

0 comments on commit 203970f

Please sign in to comment.