setODataType("#microsoft.graph.accessPackageAnswerString"); } /** * Gets the value * The value stored on the requestor's user profile, if this answer is configured to be stored as a specific attribute. * * @return string|null The value */ public function getValue() { if (array_key_exists("value", $this->_propDict)) { return $this->_propDict["value"]; } else { return null; } } /** * Sets the value * The value stored on the requestor's user profile, if this answer is configured to be stored as a specific attribute. * * @param string $val The value of the value * * @return AccessPackageAnswerString */ public function setValue($val) { $this->_propDict["value"] = $val; return $this; } }