_propDict)) { return $this->_propDict["id"]; } else { return null; } } /** * Sets the id * The item's unique identifier. * * @param string $val The value of the id * * @return ResourceReference */ public function setId($val) { $this->_propDict["id"] = $val; return $this; } /** * Gets the type * A string value that can be used to classify the item, such as 'microsoft.graph.driveItem' * * @return string|null The type */ public function getType() { if (array_key_exists("type", $this->_propDict)) { return $this->_propDict["type"]; } else { return null; } } /** * Sets the type * A string value that can be used to classify the item, such as 'microsoft.graph.driveItem' * * @param string $val The value of the type * * @return ResourceReference */ public function setType($val) { $this->_propDict["type"] = $val; return $this; } /** * Gets the webUrl * A URL leading to the referenced item. * * @return string|null The webUrl */ public function getWebUrl() { if (array_key_exists("webUrl", $this->_propDict)) { return $this->_propDict["webUrl"]; } else { return null; } } /** * Sets the webUrl * A URL leading to the referenced item. * * @param string $val The value of the webUrl * * @return ResourceReference */ public function setWebUrl($val) { $this->_propDict["webUrl"] = $val; return $this; } }