_propDict)) { return $this->_propDict["isCaptionEnabled"]; } else { return null; } } /** * Sets the isCaptionEnabled * Indicates whether captions are enabled for this Teams live event. * * @param bool $val The value of the isCaptionEnabled * * @return BroadcastMeetingCaptionSettings */ public function setIsCaptionEnabled($val) { $this->_propDict["isCaptionEnabled"] = $val; return $this; } /** * Gets the spokenLanguage * The spoken language. * * @return string|null The spokenLanguage */ public function getSpokenLanguage() { if (array_key_exists("spokenLanguage", $this->_propDict)) { return $this->_propDict["spokenLanguage"]; } else { return null; } } /** * Sets the spokenLanguage * The spoken language. * * @param string $val The value of the spokenLanguage * * @return BroadcastMeetingCaptionSettings */ public function setSpokenLanguage($val) { $this->_propDict["spokenLanguage"] = $val; return $this; } /** * Gets the translationLanguages * The translation languages (choose up to 6). * * @return string|null The translationLanguages */ public function getTranslationLanguages() { if (array_key_exists("translationLanguages", $this->_propDict)) { return $this->_propDict["translationLanguages"]; } else { return null; } } /** * Sets the translationLanguages * The translation languages (choose up to 6). * * @param string $val The value of the translationLanguages * * @return BroadcastMeetingCaptionSettings */ public function setTranslationLanguages($val) { $this->_propDict["translationLanguages"] = $val; return $this; } }