_propDict)) { return $this->_propDict["isDefault"]; } else { return null; } } /** * Sets the isDefault * Indicates whether the label is the default label. * * @param bool $val The value of the isDefault * * @return LocalizedLabel */ public function setIsDefault($val) { $this->_propDict["isDefault"] = $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 LocalizedLabel */ public function setLanguageTag($val) { $this->_propDict["languageTag"] = $val; return $this; } /** * Gets the name * The name of the label. * * @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 of the label. * * @param string $val The value of the name * * @return LocalizedLabel */ public function setName($val) { $this->_propDict["name"] = $val; return $this; } }