_propDict)) { return $this->_propDict["email"]; } else { return null; } } /** * Sets the email * Email address of the user's mailbox. * * @param string $val The email * * @return UserSource */ public function setEmail($val) { $this->_propDict["email"] = $val; return $this; } /** * Gets the includedSources * Specifies which sources are included in this group. Possible values are: mailbox, site. * * @return SourceType|null The includedSources */ public function getIncludedSources() { if (array_key_exists("includedSources", $this->_propDict)) { if (is_a($this->_propDict["includedSources"], "\Microsoft\Graph\SecurityNamespace\Model\SourceType") || is_null($this->_propDict["includedSources"])) { return $this->_propDict["includedSources"]; } else { $this->_propDict["includedSources"] = new SourceType($this->_propDict["includedSources"]); return $this->_propDict["includedSources"]; } } return null; } /** * Sets the includedSources * Specifies which sources are included in this group. Possible values are: mailbox, site. * * @param SourceType $val The includedSources * * @return UserSource */ public function setIncludedSources($val) { $this->_propDict["includedSources"] = $val; return $this; } /** * Gets the siteWebUrl * The URL of the user's OneDrive for Business site. Read-only. * * @return string|null The siteWebUrl */ public function getSiteWebUrl() { if (array_key_exists("siteWebUrl", $this->_propDict)) { return $this->_propDict["siteWebUrl"]; } else { return null; } } /** * Sets the siteWebUrl * The URL of the user's OneDrive for Business site. Read-only. * * @param string $val The siteWebUrl * * @return UserSource */ public function setSiteWebUrl($val) { $this->_propDict["siteWebUrl"] = $val; return $this; } }