_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 LocalizedName */ public function setLanguageTag($val) { $this->_propDict["languageTag"] = $val; return $this; } /** * Gets the name * The name in the localized language. * * @return string|null The name */ public function getName() { if (array_key_exists("name", $this->_propDict)) { return $this->_propDict["name"]; } else { return null; } } /** * Sets the name * The name in the localized language. * * @param string $val The value of the name * * @return LocalizedName */ public function setName($val) { $this->_propDict["name"] = $val; return $this; } }