codec = $codec; } /** * @return string */ public function getCodec() { return $this->codec; } /** * @param string */ public function setDisplayName($displayName) { $this->displayName = $displayName; } /** * @return string */ public function getDisplayName() { return $this->displayName; } /** * @param string */ public function setLanguageCode($languageCode) { $this->languageCode = $languageCode; } /** * @return string */ public function getLanguageCode() { return $this->languageCode; } /** * @param TextMapping[] */ public function setMapping($mapping) { $this->mapping = $mapping; } /** * @return TextMapping[] */ public function getMapping() { return $this->mapping; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(TextStream::class, 'Google_Service_Transcoder_TextStream');