code
stringlengths
17
296k
docstring
stringlengths
30
30.3k
func_name
stringlengths
1
89
language
stringclasses
1 value
repo
stringlengths
7
63
path
stringlengths
7
153
url
stringlengths
51
209
license
stringclasses
4 values
public function getDisplayName() { if (array_key_exists("displayName", $this->_propDict)) { return $this->_propDict["displayName"]; } else { return null; } }
Gets the displayName The name of the team. @return string|null The displayName
getDisplayName
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function setDisplayName($val) { $this->_propDict["displayName"] = $val; return $this; }
Sets the displayName The name of the team. @param string $val The displayName @return Team
setDisplayName
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function getFunSettings() { if (array_key_exists("funSettings", $this->_propDict)) { if (is_a($this->_propDict["funSettings"], "\Beta\Microsoft\Graph\Model\TeamFunSettings") || is_null($this->_propDict["funSettings"])) { return $this->_propDict["funSettings"]; } else { $this->_propDict["funSettings"] = new TeamFunSettings($this->_propDict["funSettings"]); return $this->_propDict["funSettings"]; } } return null; }
Gets the funSettings Settings to configure use of Giphy, memes, and stickers in the team. @return TeamFunSettings|null The funSettings
getFunSettings
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function setFunSettings($val) { $this->_propDict["funSettings"] = $val; return $this; }
Sets the funSettings Settings to configure use of Giphy, memes, and stickers in the team. @param TeamFunSettings $val The funSettings @return Team
setFunSettings
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function getGuestSettings() { if (array_key_exists("guestSettings", $this->_propDict)) { if (is_a($this->_propDict["guestSettings"], "\Beta\Microsoft\Graph\Model\TeamGuestSettings") || is_null($this->_propDict["guestSettings"])) { return $this->_propDict["guestSettings"]; } else { $this->_propDict["guestSettings"] = new TeamGuestSettings($this->_propDict["guestSettings"]); return $this->_propDict["guestSettings"]; } } return null; }
Gets the guestSettings Settings to configure whether guests can create, update, or delete channels in the team. @return TeamGuestSettings|null The guestSettings
getGuestSettings
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function setGuestSettings($val) { $this->_propDict["guestSettings"] = $val; return $this; }
Sets the guestSettings Settings to configure whether guests can create, update, or delete channels in the team. @param TeamGuestSettings $val The guestSettings @return Team
setGuestSettings
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function getInternalId() { if (array_key_exists("internalId", $this->_propDict)) { return $this->_propDict["internalId"]; } else { return null; } }
Gets the internalId A unique ID for the team that has been used in a few places such as the audit log/Office 365 Management Activity API. @return string|null The internalId
getInternalId
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function setInternalId($val) { $this->_propDict["internalId"] = $val; return $this; }
Sets the internalId A unique ID for the team that has been used in a few places such as the audit log/Office 365 Management Activity API. @param string $val The internalId @return Team
setInternalId
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function getIsArchived() { if (array_key_exists("isArchived", $this->_propDict)) { return $this->_propDict["isArchived"]; } else { return null; } }
Gets the isArchived Whether this team is in read-only mode. @return bool|null The isArchived
getIsArchived
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function setIsArchived($val) { $this->_propDict["isArchived"] = boolval($val); return $this; }
Sets the isArchived Whether this team is in read-only mode. @param bool $val The isArchived @return Team
setIsArchived
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function getIsMembershipLimitedToOwners() { if (array_key_exists("isMembershipLimitedToOwners", $this->_propDict)) { return $this->_propDict["isMembershipLimitedToOwners"]; } else { return null; } }
Gets the isMembershipLimitedToOwners If set to true, the team is currently in the owner-only team membership state and not accessible by other team members, such as students. @return bool|null The isMembershipLimitedToOwners
getIsMembershipLimitedToOwners
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function setIsMembershipLimitedToOwners($val) { $this->_propDict["isMembershipLimitedToOwners"] = boolval($val); return $this; }
Sets the isMembershipLimitedToOwners If set to true, the team is currently in the owner-only team membership state and not accessible by other team members, such as students. @param bool $val The isMembershipLimitedToOwners @return Team
setIsMembershipLimitedToOwners
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function getMemberSettings() { if (array_key_exists("memberSettings", $this->_propDict)) { if (is_a($this->_propDict["memberSettings"], "\Beta\Microsoft\Graph\Model\TeamMemberSettings") || is_null($this->_propDict["memberSettings"])) { return $this->_propDict["memberSettings"]; } else { $this->_propDict["memberSettings"] = new TeamMemberSettings($this->_propDict["memberSettings"]); return $this->_propDict["memberSettings"]; } } return null; }
Gets the memberSettings Settings to configure whether members can perform certain actions, for example, create channels and add bots, in the team. @return TeamMemberSettings|null The memberSettings
getMemberSettings
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function setMemberSettings($val) { $this->_propDict["memberSettings"] = $val; return $this; }
Sets the memberSettings Settings to configure whether members can perform certain actions, for example, create channels and add bots, in the team. @param TeamMemberSettings $val The memberSettings @return Team
setMemberSettings
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function getMessagingSettings() { if (array_key_exists("messagingSettings", $this->_propDict)) { if (is_a($this->_propDict["messagingSettings"], "\Beta\Microsoft\Graph\Model\TeamMessagingSettings") || is_null($this->_propDict["messagingSettings"])) { return $this->_propDict["messagingSettings"]; } else { $this->_propDict["messagingSettings"] = new TeamMessagingSettings($this->_propDict["messagingSettings"]); return $this->_propDict["messagingSettings"]; } } return null; }
Gets the messagingSettings Settings to configure messaging and mentions in the team. @return TeamMessagingSettings|null The messagingSettings
getMessagingSettings
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function setMessagingSettings($val) { $this->_propDict["messagingSettings"] = $val; return $this; }
Sets the messagingSettings Settings to configure messaging and mentions in the team. @param TeamMessagingSettings $val The messagingSettings @return Team
setMessagingSettings
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function getSpecialization() { if (array_key_exists("specialization", $this->_propDict)) { if (is_a($this->_propDict["specialization"], "\Beta\Microsoft\Graph\Model\TeamSpecialization") || is_null($this->_propDict["specialization"])) { return $this->_propDict["specialization"]; } else { $this->_propDict["specialization"] = new TeamSpecialization($this->_propDict["specialization"]); return $this->_propDict["specialization"]; } } return null; }
Gets the specialization Optional. Indicates whether the team is intended for a particular use case. Each team specialization has access to unique behaviors and experiences targeted to its use case. @return TeamSpecialization|null The specialization
getSpecialization
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function setSpecialization($val) { $this->_propDict["specialization"] = $val; return $this; }
Sets the specialization Optional. Indicates whether the team is intended for a particular use case. Each team specialization has access to unique behaviors and experiences targeted to its use case. @param TeamSpecialization $val The specialization @return Team
setSpecialization
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function getSummary() { if (array_key_exists("summary", $this->_propDict)) { if (is_a($this->_propDict["summary"], "\Beta\Microsoft\Graph\Model\TeamSummary") || is_null($this->_propDict["summary"])) { return $this->_propDict["summary"]; } else { $this->_propDict["summary"] = new TeamSummary($this->_propDict["summary"]); return $this->_propDict["summary"]; } } return null; }
Gets the summary Contains summary information about the team, including number of owners, members, and guests. @return TeamSummary|null The summary
getSummary
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function setSummary($val) { $this->_propDict["summary"] = $val; return $this; }
Sets the summary Contains summary information about the team, including number of owners, members, and guests. @param TeamSummary $val The summary @return Team
setSummary
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function getTenantId() { if (array_key_exists("tenantId", $this->_propDict)) { return $this->_propDict["tenantId"]; } else { return null; } }
Gets the tenantId The ID of the Azure Active Directory tenant. @return string|null The tenantId
getTenantId
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function setTenantId($val) { $this->_propDict["tenantId"] = $val; return $this; }
Sets the tenantId The ID of the Azure Active Directory tenant. @param string $val The tenantId @return Team
setTenantId
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function getVisibility() { if (array_key_exists("visibility", $this->_propDict)) { if (is_a($this->_propDict["visibility"], "\Beta\Microsoft\Graph\Model\TeamVisibilityType") || is_null($this->_propDict["visibility"])) { return $this->_propDict["visibility"]; } else { $this->_propDict["visibility"] = new TeamVisibilityType($this->_propDict["visibility"]); return $this->_propDict["visibility"]; } } return null; }
Gets the visibility The visibility of the group and team. Defaults to Public. @return TeamVisibilityType|null The visibility
getVisibility
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function setVisibility($val) { $this->_propDict["visibility"] = $val; return $this; }
Sets the visibility The visibility of the group and team. Defaults to Public. @param TeamVisibilityType $val The visibility @return Team
setVisibility
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function getWebUrl() { if (array_key_exists("webUrl", $this->_propDict)) { return $this->_propDict["webUrl"]; } else { return null; } }
Gets the webUrl A hyperlink that will go to the team in the Microsoft Teams client. This is the URL that you get when you right-click a team in the Microsoft Teams client and select Get link to team. This URL should be treated as an opaque blob, and not parsed. @return string|null The webUrl
getWebUrl
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function setWebUrl($val) { $this->_propDict["webUrl"] = $val; return $this; }
Sets the webUrl A hyperlink that will go to the team in the Microsoft Teams client. This is the URL that you get when you right-click a team in the Microsoft Teams client and select Get link to team. This URL should be treated as an opaque blob, and not parsed. @param string $val The webUrl @return Team
setWebUrl
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function getAllChannels() { if (array_key_exists("allChannels", $this->_propDict)) { return $this->_propDict["allChannels"]; } else { return null; } }
Gets the allChannels List of channels either hosted in or shared with the team (incoming channels). @return array|null The allChannels
getAllChannels
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function setAllChannels($val) { $this->_propDict["allChannels"] = $val; return $this; }
Sets the allChannels List of channels either hosted in or shared with the team (incoming channels). @param Channel[] $val The allChannels @return Team
setAllChannels
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function getChannels() { if (array_key_exists("channels", $this->_propDict)) { return $this->_propDict["channels"]; } else { return null; } }
Gets the channels The collection of channels and messages associated with the team. @return array|null The channels
getChannels
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function setChannels($val) { $this->_propDict["channels"] = $val; return $this; }
Sets the channels The collection of channels and messages associated with the team. @param Channel[] $val The channels @return Team
setChannels
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function getIncomingChannels() { if (array_key_exists("incomingChannels", $this->_propDict)) { return $this->_propDict["incomingChannels"]; } else { return null; } }
Gets the incomingChannels List of channels shared with the team. @return array|null The incomingChannels
getIncomingChannels
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function setIncomingChannels($val) { $this->_propDict["incomingChannels"] = $val; return $this; }
Sets the incomingChannels List of channels shared with the team. @param Channel[] $val The incomingChannels @return Team
setIncomingChannels
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function getInstalledApps() { if (array_key_exists("installedApps", $this->_propDict)) { return $this->_propDict["installedApps"]; } else { return null; } }
Gets the installedApps The apps installed in this team. @return array|null The installedApps
getInstalledApps
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function setInstalledApps($val) { $this->_propDict["installedApps"] = $val; return $this; }
Sets the installedApps The apps installed in this team. @param TeamsAppInstallation[] $val The installedApps @return Team
setInstalledApps
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function getMembers() { if (array_key_exists("members", $this->_propDict)) { return $this->_propDict["members"]; } else { return null; } }
Gets the members Members and owners of the team. @return array|null The members
getMembers
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function setMembers($val) { $this->_propDict["members"] = $val; return $this; }
Sets the members Members and owners of the team. @param ConversationMember[] $val The members @return Team
setMembers
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function getOperations() { if (array_key_exists("operations", $this->_propDict)) { return $this->_propDict["operations"]; } else { return null; } }
Gets the operations The async operations that ran or are running on this team. @return array|null The operations
getOperations
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function setOperations($val) { $this->_propDict["operations"] = $val; return $this; }
Sets the operations The async operations that ran or are running on this team. @param TeamsAsyncOperation[] $val The operations @return Team
setOperations
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function getOwners() { if (array_key_exists("owners", $this->_propDict)) { return $this->_propDict["owners"]; } else { return null; } }
Gets the owners The list of this team's owners. Currently, when creating a team using application permissions, exactly one owner must be specified. When using user delegated permissions, no owner can be specified (the current user is the owner). Owner must be specified as an object ID (GUID), not a UPN. @return array|null The owners
getOwners
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function setOwners($val) { $this->_propDict["owners"] = $val; return $this; }
Sets the owners The list of this team's owners. Currently, when creating a team using application permissions, exactly one owner must be specified. When using user delegated permissions, no owner can be specified (the current user is the owner). Owner must be specified as an object ID (GUID), not a UPN. @param User[] $val The owners @return Team
setOwners
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function getPermissionGrants() { if (array_key_exists("permissionGrants", $this->_propDict)) { return $this->_propDict["permissionGrants"]; } else { return null; } }
Gets the permissionGrants A collection of permissions granted to apps to access the team. @return array|null The permissionGrants
getPermissionGrants
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function setPermissionGrants($val) { $this->_propDict["permissionGrants"] = $val; return $this; }
Sets the permissionGrants A collection of permissions granted to apps to access the team. @param ResourceSpecificPermissionGrant[] $val The permissionGrants @return Team
setPermissionGrants
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function getPhoto() { if (array_key_exists("photo", $this->_propDict)) { if (is_a($this->_propDict["photo"], "\Beta\Microsoft\Graph\Model\ProfilePhoto") || is_null($this->_propDict["photo"])) { return $this->_propDict["photo"]; } else { $this->_propDict["photo"] = new ProfilePhoto($this->_propDict["photo"]); return $this->_propDict["photo"]; } } return null; }
Gets the photo The team photo. @return ProfilePhoto|null The photo
getPhoto
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function setPhoto($val) { $this->_propDict["photo"] = $val; return $this; }
Sets the photo The team photo. @param ProfilePhoto $val The photo @return Team
setPhoto
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function getPrimaryChannel() { if (array_key_exists("primaryChannel", $this->_propDict)) { if (is_a($this->_propDict["primaryChannel"], "\Beta\Microsoft\Graph\Model\Channel") || is_null($this->_propDict["primaryChannel"])) { return $this->_propDict["primaryChannel"]; } else { $this->_propDict["primaryChannel"] = new Channel($this->_propDict["primaryChannel"]); return $this->_propDict["primaryChannel"]; } } return null; }
Gets the primaryChannel The general channel for the team. @return Channel|null The primaryChannel
getPrimaryChannel
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function setPrimaryChannel($val) { $this->_propDict["primaryChannel"] = $val; return $this; }
Sets the primaryChannel The general channel for the team. @param Channel $val The primaryChannel @return Team
setPrimaryChannel
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function getTags() { if (array_key_exists("tags", $this->_propDict)) { return $this->_propDict["tags"]; } else { return null; } }
Gets the tags The tags associated with the team. @return array|null The tags
getTags
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function setTags($val) { $this->_propDict["tags"] = $val; return $this; }
Sets the tags The tags associated with the team. @param TeamworkTag[] $val The tags @return Team
setTags
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function getTemplate() { if (array_key_exists("template", $this->_propDict)) { if (is_a($this->_propDict["template"], "\Beta\Microsoft\Graph\Model\TeamsTemplate") || is_null($this->_propDict["template"])) { return $this->_propDict["template"]; } else { $this->_propDict["template"] = new TeamsTemplate($this->_propDict["template"]); return $this->_propDict["template"]; } } return null; }
Gets the template The template this team was created from. See available templates. @return TeamsTemplate|null The template
getTemplate
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function setTemplate($val) { $this->_propDict["template"] = $val; return $this; }
Sets the template The template this team was created from. See available templates. @param TeamsTemplate $val The template @return Team
setTemplate
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function getTemplateDefinition() { if (array_key_exists("templateDefinition", $this->_propDict)) { if (is_a($this->_propDict["templateDefinition"], "\Beta\Microsoft\Graph\Model\TeamTemplateDefinition") || is_null($this->_propDict["templateDefinition"])) { return $this->_propDict["templateDefinition"]; } else { $this->_propDict["templateDefinition"] = new TeamTemplateDefinition($this->_propDict["templateDefinition"]); return $this->_propDict["templateDefinition"]; } } return null; }
Gets the templateDefinition Generic representation of a team template definition for a team with a specific structure and configuration. @return TeamTemplateDefinition|null The templateDefinition
getTemplateDefinition
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function setTemplateDefinition($val) { $this->_propDict["templateDefinition"] = $val; return $this; }
Sets the templateDefinition Generic representation of a team template definition for a team with a specific structure and configuration. @param TeamTemplateDefinition $val The templateDefinition @return Team
setTemplateDefinition
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function getSchedule() { if (array_key_exists("schedule", $this->_propDict)) { if (is_a($this->_propDict["schedule"], "\Beta\Microsoft\Graph\Model\Schedule") || is_null($this->_propDict["schedule"])) { return $this->_propDict["schedule"]; } else { $this->_propDict["schedule"] = new Schedule($this->_propDict["schedule"]); return $this->_propDict["schedule"]; } } return null; }
Gets the schedule The schedule of shifts for this team. @return Schedule|null The schedule
getSchedule
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function setSchedule($val) { $this->_propDict["schedule"] = $val; return $this; }
Sets the schedule The schedule of shifts for this team. @param Schedule $val The schedule @return Team
setSchedule
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/Team.php
MIT
public function getParentUrl() { if (array_key_exists("parentUrl", $this->_propDict)) { return $this->_propDict["parentUrl"]; } else { return null; } }
Gets the parentUrl The URL for the print entity that triggered this task. For example, https://graph.microsoft.com/v1.0/print/printers/{printerId}/jobs/{jobId}. Read-only. @return string|null The parentUrl
getParentUrl
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrintTask.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrintTask.php
MIT
public function setParentUrl($val) { $this->_propDict["parentUrl"] = $val; return $this; }
Sets the parentUrl The URL for the print entity that triggered this task. For example, https://graph.microsoft.com/v1.0/print/printers/{printerId}/jobs/{jobId}. Read-only. @param string $val The parentUrl @return PrintTask
setParentUrl
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrintTask.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrintTask.php
MIT
public function getStatus() { if (array_key_exists("status", $this->_propDict)) { if (is_a($this->_propDict["status"], "\Microsoft\Graph\Model\PrintTaskStatus") || is_null($this->_propDict["status"])) { return $this->_propDict["status"]; } else { $this->_propDict["status"] = new PrintTaskStatus($this->_propDict["status"]); return $this->_propDict["status"]; } } return null; }
Gets the status The current execution status of this printTask. The calling application is responsible for updating this status when processing is finished, unless the related printJob has been redirected to another printer. Failure to report completion will result in the related print job being blocked from printing and eventually deleted. @return PrintTaskStatus|null The status
getStatus
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrintTask.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrintTask.php
MIT
public function setStatus($val) { $this->_propDict["status"] = $val; return $this; }
Sets the status The current execution status of this printTask. The calling application is responsible for updating this status when processing is finished, unless the related printJob has been redirected to another printer. Failure to report completion will result in the related print job being blocked from printing and eventually deleted. @param PrintTaskStatus $val The status @return PrintTask
setStatus
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrintTask.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrintTask.php
MIT
public function getDefinition() { if (array_key_exists("definition", $this->_propDict)) { if (is_a($this->_propDict["definition"], "\Microsoft\Graph\Model\PrintTaskDefinition") || is_null($this->_propDict["definition"])) { return $this->_propDict["definition"]; } else { $this->_propDict["definition"] = new PrintTaskDefinition($this->_propDict["definition"]); return $this->_propDict["definition"]; } } return null; }
Gets the definition The printTaskDefinition that was used to create this task. Read-only. @return PrintTaskDefinition|null The definition
getDefinition
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrintTask.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrintTask.php
MIT
public function setDefinition($val) { $this->_propDict["definition"] = $val; return $this; }
Sets the definition The printTaskDefinition that was used to create this task. Read-only. @param PrintTaskDefinition $val The definition @return PrintTask
setDefinition
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrintTask.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrintTask.php
MIT
public function getTrigger() { if (array_key_exists("trigger", $this->_propDict)) { if (is_a($this->_propDict["trigger"], "\Microsoft\Graph\Model\PrintTaskTrigger") || is_null($this->_propDict["trigger"])) { return $this->_propDict["trigger"]; } else { $this->_propDict["trigger"] = new PrintTaskTrigger($this->_propDict["trigger"]); return $this->_propDict["trigger"]; } } return null; }
Gets the trigger The printTaskTrigger that triggered this task's execution. Read-only. @return PrintTaskTrigger|null The trigger
getTrigger
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrintTask.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrintTask.php
MIT
public function setTrigger($val) { $this->_propDict["trigger"] = $val; return $this; }
Sets the trigger The printTaskTrigger that triggered this task's execution. Read-only. @param PrintTaskTrigger $val The trigger @return PrintTask
setTrigger
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrintTask.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrintTask.php
MIT
public function getAllowRedirect() { if (array_key_exists("allowRedirect", $this->_propDict)) { return $this->_propDict["allowRedirect"]; } else { return null; } }
Gets the allowRedirect Controls the behavior of redirected sites. If true, indicates that the site will open in Internet Explorer 11 or Microsoft Edge even if the site is navigated to as part of a HTTP or meta refresh redirection chain. @return bool|null The allowRedirect
getAllowRedirect
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BrowserSiteHistory.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BrowserSiteHistory.php
MIT
public function setAllowRedirect($val) { $this->_propDict["allowRedirect"] = $val; return $this; }
Sets the allowRedirect Controls the behavior of redirected sites. If true, indicates that the site will open in Internet Explorer 11 or Microsoft Edge even if the site is navigated to as part of a HTTP or meta refresh redirection chain. @param bool $val The value of the allowRedirect @return BrowserSiteHistory
setAllowRedirect
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BrowserSiteHistory.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BrowserSiteHistory.php
MIT
public function getComment() { if (array_key_exists("comment", $this->_propDict)) { return $this->_propDict["comment"]; } else { return null; } }
Gets the comment The comment for the site. @return string|null The comment
getComment
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BrowserSiteHistory.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BrowserSiteHistory.php
MIT
public function setComment($val) { $this->_propDict["comment"] = $val; return $this; }
Sets the comment The comment for the site. @param string $val The value of the comment @return BrowserSiteHistory
setComment
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BrowserSiteHistory.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BrowserSiteHistory.php
MIT
public function getCompatibilityMode() { if (array_key_exists("compatibilityMode", $this->_propDict)) { if (is_a($this->_propDict["compatibilityMode"], "\Beta\Microsoft\Graph\Model\BrowserSiteCompatibilityMode") || is_null($this->_propDict["compatibilityMode"])) { return $this->_propDict["compatibilityMode"]; } else { $this->_propDict["compatibilityMode"] = new BrowserSiteCompatibilityMode($this->_propDict["compatibilityMode"]); return $this->_propDict["compatibilityMode"]; } } return null; }
Gets the compatibilityMode Controls what compatibility setting is used for specific sites or domains. The possible values are: default, internetExplorer8Enterprise, internetExplorer7Enterprise, internetExplorer11, internetExplorer10, internetExplorer9, internetExplorer8, internetExplorer7, internetExplorer5, unknownFutureValue. @return BrowserSiteCompatibilityMode|null The compatibilityMode
getCompatibilityMode
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BrowserSiteHistory.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BrowserSiteHistory.php
MIT
public function setCompatibilityMode($val) { $this->_propDict["compatibilityMode"] = $val; return $this; }
Sets the compatibilityMode Controls what compatibility setting is used for specific sites or domains. The possible values are: default, internetExplorer8Enterprise, internetExplorer7Enterprise, internetExplorer11, internetExplorer10, internetExplorer9, internetExplorer8, internetExplorer7, internetExplorer5, unknownFutureValue. @param BrowserSiteCompatibilityMode $val The value to assign to the compatibilityMode @return BrowserSiteHistory The BrowserSiteHistory
setCompatibilityMode
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BrowserSiteHistory.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BrowserSiteHistory.php
MIT
public function getLastModifiedBy() { if (array_key_exists("lastModifiedBy", $this->_propDict)) { if (is_a($this->_propDict["lastModifiedBy"], "\Beta\Microsoft\Graph\Model\IdentitySet") || is_null($this->_propDict["lastModifiedBy"])) { return $this->_propDict["lastModifiedBy"]; } else { $this->_propDict["lastModifiedBy"] = new IdentitySet($this->_propDict["lastModifiedBy"]); return $this->_propDict["lastModifiedBy"]; } } return null; }
Gets the lastModifiedBy The user who last modified the site. @return IdentitySet|null The lastModifiedBy
getLastModifiedBy
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BrowserSiteHistory.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BrowserSiteHistory.php
MIT
public function setLastModifiedBy($val) { $this->_propDict["lastModifiedBy"] = $val; return $this; }
Sets the lastModifiedBy The user who last modified the site. @param IdentitySet $val The value to assign to the lastModifiedBy @return BrowserSiteHistory The BrowserSiteHistory
setLastModifiedBy
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BrowserSiteHistory.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BrowserSiteHistory.php
MIT
public function getMergeType() { if (array_key_exists("mergeType", $this->_propDict)) { if (is_a($this->_propDict["mergeType"], "\Beta\Microsoft\Graph\Model\BrowserSiteMergeType") || is_null($this->_propDict["mergeType"])) { return $this->_propDict["mergeType"]; } else { $this->_propDict["mergeType"] = new BrowserSiteMergeType($this->_propDict["mergeType"]); return $this->_propDict["mergeType"]; } } return null; }
Gets the mergeType The merge type of the site. The possible values are: noMerge, default, unknownFutureValue. @return BrowserSiteMergeType|null The mergeType
getMergeType
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BrowserSiteHistory.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BrowserSiteHistory.php
MIT
public function setMergeType($val) { $this->_propDict["mergeType"] = $val; return $this; }
Sets the mergeType The merge type of the site. The possible values are: noMerge, default, unknownFutureValue. @param BrowserSiteMergeType $val The value to assign to the mergeType @return BrowserSiteHistory The BrowserSiteHistory
setMergeType
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BrowserSiteHistory.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BrowserSiteHistory.php
MIT
public function getPublishedDateTime() { if (array_key_exists("publishedDateTime", $this->_propDict)) { if (is_a($this->_propDict["publishedDateTime"], "\DateTime") || is_null($this->_propDict["publishedDateTime"])) { return $this->_propDict["publishedDateTime"]; } else { $this->_propDict["publishedDateTime"] = new \DateTime($this->_propDict["publishedDateTime"]); return $this->_propDict["publishedDateTime"]; } } return null; }
Gets the publishedDateTime The date and time when the site was last published. @return \DateTime|null The publishedDateTime
getPublishedDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BrowserSiteHistory.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BrowserSiteHistory.php
MIT
public function setPublishedDateTime($val) { $this->_propDict["publishedDateTime"] = $val; return $this; }
Sets the publishedDateTime The date and time when the site was last published. @param \DateTime $val The value to assign to the publishedDateTime @return BrowserSiteHistory The BrowserSiteHistory
setPublishedDateTime
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BrowserSiteHistory.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BrowserSiteHistory.php
MIT
public function getTargetEnvironment() { if (array_key_exists("targetEnvironment", $this->_propDict)) { if (is_a($this->_propDict["targetEnvironment"], "\Beta\Microsoft\Graph\Model\BrowserSiteTargetEnvironment") || is_null($this->_propDict["targetEnvironment"])) { return $this->_propDict["targetEnvironment"]; } else { $this->_propDict["targetEnvironment"] = new BrowserSiteTargetEnvironment($this->_propDict["targetEnvironment"]); return $this->_propDict["targetEnvironment"]; } } return null; }
Gets the targetEnvironment The target environment that the site should open in. The possible values are: internetExplorerMode, internetExplorer11, microsoftEdge, configurable, none, unknownFutureValue.Prior to June 15, 2022, the internetExplorer11 option would allow opening a site in the Internet Explorer 11 (IE11) desktop application. Following the retirement of IE11 on June 15, 2022, the internetExplorer11 option will no longer open an IE11 window and will instead behave the same as the internetExplorerMode option. @return BrowserSiteTargetEnvironment|null The targetEnvironment
getTargetEnvironment
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BrowserSiteHistory.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BrowserSiteHistory.php
MIT
public function setTargetEnvironment($val) { $this->_propDict["targetEnvironment"] = $val; return $this; }
Sets the targetEnvironment The target environment that the site should open in. The possible values are: internetExplorerMode, internetExplorer11, microsoftEdge, configurable, none, unknownFutureValue.Prior to June 15, 2022, the internetExplorer11 option would allow opening a site in the Internet Explorer 11 (IE11) desktop application. Following the retirement of IE11 on June 15, 2022, the internetExplorer11 option will no longer open an IE11 window and will instead behave the same as the internetExplorerMode option. @param BrowserSiteTargetEnvironment $val The value to assign to the targetEnvironment @return BrowserSiteHistory The BrowserSiteHistory
setTargetEnvironment
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BrowserSiteHistory.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/BrowserSiteHistory.php
MIT
public function getAutomaticReplies() { if (array_key_exists("automaticReplies", $this->_propDict)) { if (is_a($this->_propDict["automaticReplies"], "\Beta\Microsoft\Graph\Model\AutomaticRepliesMailTips") || is_null($this->_propDict["automaticReplies"])) { return $this->_propDict["automaticReplies"]; } else { $this->_propDict["automaticReplies"] = new AutomaticRepliesMailTips($this->_propDict["automaticReplies"]); return $this->_propDict["automaticReplies"]; } } return null; }
Gets the automaticReplies Mail tips for automatic reply if it has been set up by the recipient. @return AutomaticRepliesMailTips|null The automaticReplies
getAutomaticReplies
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MailTips.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MailTips.php
MIT
public function setAutomaticReplies($val) { $this->_propDict["automaticReplies"] = $val; return $this; }
Sets the automaticReplies Mail tips for automatic reply if it has been set up by the recipient. @param AutomaticRepliesMailTips $val The value to assign to the automaticReplies @return MailTips The MailTips
setAutomaticReplies
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MailTips.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MailTips.php
MIT
public function getCustomMailTip() { if (array_key_exists("customMailTip", $this->_propDict)) { return $this->_propDict["customMailTip"]; } else { return null; } }
Gets the customMailTip A custom mail tip that can be set on the recipient's mailbox. @return string|null The customMailTip
getCustomMailTip
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MailTips.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MailTips.php
MIT
public function setCustomMailTip($val) { $this->_propDict["customMailTip"] = $val; return $this; }
Sets the customMailTip A custom mail tip that can be set on the recipient's mailbox. @param string $val The value of the customMailTip @return MailTips
setCustomMailTip
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MailTips.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MailTips.php
MIT
public function getDeliveryRestricted() { if (array_key_exists("deliveryRestricted", $this->_propDict)) { return $this->_propDict["deliveryRestricted"]; } else { return null; } }
Gets the deliveryRestricted Whether the recipient's mailbox is restricted, for example, accepting messages from only a predefined list of senders, rejecting messages from a predefined list of senders, or accepting messages from only authenticated senders. @return bool|null The deliveryRestricted
getDeliveryRestricted
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MailTips.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MailTips.php
MIT
public function setDeliveryRestricted($val) { $this->_propDict["deliveryRestricted"] = $val; return $this; }
Sets the deliveryRestricted Whether the recipient's mailbox is restricted, for example, accepting messages from only a predefined list of senders, rejecting messages from a predefined list of senders, or accepting messages from only authenticated senders. @param bool $val The value of the deliveryRestricted @return MailTips
setDeliveryRestricted
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MailTips.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MailTips.php
MIT
public function getEmailAddress() { if (array_key_exists("emailAddress", $this->_propDict)) { if (is_a($this->_propDict["emailAddress"], "\Beta\Microsoft\Graph\Model\EmailAddress") || is_null($this->_propDict["emailAddress"])) { return $this->_propDict["emailAddress"]; } else { $this->_propDict["emailAddress"] = new EmailAddress($this->_propDict["emailAddress"]); return $this->_propDict["emailAddress"]; } } return null; }
Gets the emailAddress The email address of the recipient to get mailtips for. @return EmailAddress|null The emailAddress
getEmailAddress
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MailTips.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MailTips.php
MIT
public function setEmailAddress($val) { $this->_propDict["emailAddress"] = $val; return $this; }
Sets the emailAddress The email address of the recipient to get mailtips for. @param EmailAddress $val The value to assign to the emailAddress @return MailTips The MailTips
setEmailAddress
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MailTips.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MailTips.php
MIT
public function getError() { if (array_key_exists("error", $this->_propDict)) { if (is_a($this->_propDict["error"], "\Beta\Microsoft\Graph\Model\MailTipsError") || is_null($this->_propDict["error"])) { return $this->_propDict["error"]; } else { $this->_propDict["error"] = new MailTipsError($this->_propDict["error"]); return $this->_propDict["error"]; } } return null; }
Gets the error Errors that occur during the getMailTips action. @return MailTipsError|null The error
getError
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MailTips.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MailTips.php
MIT
public function setError($val) { $this->_propDict["error"] = $val; return $this; }
Sets the error Errors that occur during the getMailTips action. @param MailTipsError $val The value to assign to the error @return MailTips The MailTips
setError
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MailTips.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MailTips.php
MIT
public function getExternalMemberCount() { if (array_key_exists("externalMemberCount", $this->_propDict)) { return $this->_propDict["externalMemberCount"]; } else { return null; } }
Gets the externalMemberCount The number of external members if the recipient is a distribution list. @return int|null The externalMemberCount
getExternalMemberCount
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MailTips.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MailTips.php
MIT
public function setExternalMemberCount($val) { $this->_propDict["externalMemberCount"] = $val; return $this; }
Sets the externalMemberCount The number of external members if the recipient is a distribution list. @param int $val The value of the externalMemberCount @return MailTips
setExternalMemberCount
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MailTips.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MailTips.php
MIT
public function getIsModerated() { if (array_key_exists("isModerated", $this->_propDict)) { return $this->_propDict["isModerated"]; } else { return null; } }
Gets the isModerated Whether sending messages to the recipient requires approval. For example, if the recipient is a large distribution list and a moderator has been set up to approve messages sent to that distribution list, or if sending messages to a recipient requires approval of the recipient's manager. @return bool|null The isModerated
getIsModerated
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MailTips.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MailTips.php
MIT
public function setIsModerated($val) { $this->_propDict["isModerated"] = $val; return $this; }
Sets the isModerated Whether sending messages to the recipient requires approval. For example, if the recipient is a large distribution list and a moderator has been set up to approve messages sent to that distribution list, or if sending messages to a recipient requires approval of the recipient's manager. @param bool $val The value of the isModerated @return MailTips
setIsModerated
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MailTips.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MailTips.php
MIT
public function getMailboxFull() { if (array_key_exists("mailboxFull", $this->_propDict)) { return $this->_propDict["mailboxFull"]; } else { return null; } }
Gets the mailboxFull The mailbox full status of the recipient. @return bool|null The mailboxFull
getMailboxFull
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MailTips.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MailTips.php
MIT
public function setMailboxFull($val) { $this->_propDict["mailboxFull"] = $val; return $this; }
Sets the mailboxFull The mailbox full status of the recipient. @param bool $val The value of the mailboxFull @return MailTips
setMailboxFull
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MailTips.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MailTips.php
MIT
public function getMaxMessageSize() { if (array_key_exists("maxMessageSize", $this->_propDict)) { return $this->_propDict["maxMessageSize"]; } else { return null; } }
Gets the maxMessageSize The maximum message size that has been configured for the recipient's organization or mailbox. @return int|null The maxMessageSize
getMaxMessageSize
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MailTips.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MailTips.php
MIT
public function setMaxMessageSize($val) { $this->_propDict["maxMessageSize"] = $val; return $this; }
Sets the maxMessageSize The maximum message size that has been configured for the recipient's organization or mailbox. @param int $val The value of the maxMessageSize @return MailTips
setMaxMessageSize
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MailTips.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MailTips.php
MIT
public function getRecipientScope() { if (array_key_exists("recipientScope", $this->_propDict)) { if (is_a($this->_propDict["recipientScope"], "\Beta\Microsoft\Graph\Model\RecipientScopeType") || is_null($this->_propDict["recipientScope"])) { return $this->_propDict["recipientScope"]; } else { $this->_propDict["recipientScope"] = new RecipientScopeType($this->_propDict["recipientScope"]); return $this->_propDict["recipientScope"]; } } return null; }
Gets the recipientScope The scope of the recipient. Possible values are: none, internal, external, externalPartner, externalNonParther. For example, an administrator can set another organization to be its 'partner'. The scope is useful if an administrator wants certain mailtips to be accessible to certain scopes. It's also useful to senders to inform them that their message may leave the organization, helping them make the correct decisions about wording, tone and content. @return RecipientScopeType|null The recipientScope
getRecipientScope
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MailTips.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MailTips.php
MIT
public function setRecipientScope($val) { $this->_propDict["recipientScope"] = $val; return $this; }
Sets the recipientScope The scope of the recipient. Possible values are: none, internal, external, externalPartner, externalNonParther. For example, an administrator can set another organization to be its 'partner'. The scope is useful if an administrator wants certain mailtips to be accessible to certain scopes. It's also useful to senders to inform them that their message may leave the organization, helping them make the correct decisions about wording, tone and content. @param RecipientScopeType $val The value to assign to the recipientScope @return MailTips The MailTips
setRecipientScope
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MailTips.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MailTips.php
MIT
public function getRecipientSuggestions() { if (array_key_exists("recipientSuggestions", $this->_propDict)) { if (is_a($this->_propDict["recipientSuggestions"], "\Beta\Microsoft\Graph\Model\Recipient") || is_null($this->_propDict["recipientSuggestions"])) { return $this->_propDict["recipientSuggestions"]; } else { $this->_propDict["recipientSuggestions"] = new Recipient($this->_propDict["recipientSuggestions"]); return $this->_propDict["recipientSuggestions"]; } } return null; }
Gets the recipientSuggestions Recipients suggested based on previous contexts where they appear in the same message. @return Recipient|null The recipientSuggestions
getRecipientSuggestions
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MailTips.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MailTips.php
MIT
public function setRecipientSuggestions($val) { $this->_propDict["recipientSuggestions"] = $val; return $this; }
Sets the recipientSuggestions Recipients suggested based on previous contexts where they appear in the same message. @param Recipient $val The value to assign to the recipientSuggestions @return MailTips The MailTips
setRecipientSuggestions
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MailTips.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MailTips.php
MIT
public function getTotalMemberCount() { if (array_key_exists("totalMemberCount", $this->_propDict)) { return $this->_propDict["totalMemberCount"]; } else { return null; } }
Gets the totalMemberCount The number of members if the recipient is a distribution list. @return int|null The totalMemberCount
getTotalMemberCount
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MailTips.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MailTips.php
MIT
public function setTotalMemberCount($val) { $this->_propDict["totalMemberCount"] = $val; return $this; }
Sets the totalMemberCount The number of members if the recipient is a distribution list. @param int $val The value of the totalMemberCount @return MailTips
setTotalMemberCount
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MailTips.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/MailTips.php
MIT