_propDict)) { return $this->_propDict["displayName"]; } else { return null; } } /** * Sets the displayName * Not yet documented * * @param string $val The value of the displayName * * @return SettingSource */ public function setDisplayName($val) { $this->_propDict["displayName"] = $val; return $this; } /** * Gets the id * Not yet documented * * @return string|null The id */ public function getId() { if (array_key_exists("id", $this->_propDict)) { return $this->_propDict["id"]; } else { return null; } } /** * Sets the id * Not yet documented * * @param string $val The value of the id * * @return SettingSource */ public function setId($val) { $this->_propDict["id"] = $val; return $this; } /** * Gets the sourceType * Not yet documented. Possible values are: deviceConfiguration, deviceIntent. * * @return SettingSourceType|null The sourceType */ public function getSourceType() { if (array_key_exists("sourceType", $this->_propDict)) { if (is_a($this->_propDict["sourceType"], "\Microsoft\Graph\Model\SettingSourceType") || is_null($this->_propDict["sourceType"])) { return $this->_propDict["sourceType"]; } else { $this->_propDict["sourceType"] = new SettingSourceType($this->_propDict["sourceType"]); return $this->_propDict["sourceType"]; } } return null; } /** * Sets the sourceType * Not yet documented. Possible values are: deviceConfiguration, deviceIntent. * * @param SettingSourceType $val The value to assign to the sourceType * * @return SettingSource The SettingSource */ public function setSourceType($val) { $this->_propDict["sourceType"] = $val; return $this; } }