_propDict)) { return $this->_propDict["languageCode"]; } else { return null; } } /** * Sets the languageCode * The language code that text is in. For example, 'en-us'. The language component follows 2-letter codes as defined in ISO 639-1, and the country component follows 2-letter codes as defined in ISO 3166-1 alpha-2. Required. * * @param string $val The value of the languageCode * * @return AccessPackageLocalizedText */ public function setLanguageCode($val) { $this->_propDict["languageCode"] = $val; return $this; } /** * Gets the text * The question in the specific language. Required. * * @return string|null The text */ public function getText() { if (array_key_exists("text", $this->_propDict)) { return $this->_propDict["text"]; } else { return null; } } /** * Sets the text * The question in the specific language. Required. * * @param string $val The value of the text * * @return AccessPackageLocalizedText */ public function setText($val) { $this->_propDict["text"] = $val; return $this; } }