_propDict)) { return $this->_propDict["content"]; } else { return null; } } /** * Sets the content * Landing page detail content. * * @param string $val The content * * @return LandingPageDetail */ public function setContent($val) { $this->_propDict["content"] = $val; return $this; } /** * Gets the isDefaultLangauge * Indicates whether this language detail is default for the landing page. * * @return bool|null The isDefaultLangauge */ public function getIsDefaultLangauge() { if (array_key_exists("isDefaultLangauge", $this->_propDict)) { return $this->_propDict["isDefaultLangauge"]; } else { return null; } } /** * Sets the isDefaultLangauge * Indicates whether this language detail is default for the landing page. * * @param bool $val The isDefaultLangauge * * @return LandingPageDetail */ public function setIsDefaultLangauge($val) { $this->_propDict["isDefaultLangauge"] = boolval($val); return $this; } /** * Gets the language * The content language for the landing page. * * @return string|null The language */ public function getLanguage() { if (array_key_exists("language", $this->_propDict)) { return $this->_propDict["language"]; } else { return null; } } /** * Sets the language * The content language for the landing page. * * @param string $val The language * * @return LandingPageDetail */ public function setLanguage($val) { $this->_propDict["language"] = $val; return $this; } }