_propDict)) { return $this->_propDict["description"]; } else { return null; } } /** * Sets the description * The description in the localized language. * * @param string $val The value of the description * * @return LocalizedDescription */ public function setDescription($val) { $this->_propDict["description"] = $val; return $this; } /** * Gets the languageTag * The language tag for the label. * * @return string|null The languageTag */ public function getLanguageTag() { if (array_key_exists("languageTag", $this->_propDict)) { return $this->_propDict["languageTag"]; } else { return null; } } /** * Sets the languageTag * The language tag for the label. * * @param string $val The value of the languageTag * * @return LocalizedDescription */ public function setLanguageTag($val) { $this->_propDict["languageTag"] = $val; return $this; } }