bitrateBps = $bitrateBps; } /** * @return int */ public function getBitrateBps() { return $this->bitrateBps; } /** * @param int */ public function setChannelCount($channelCount) { $this->channelCount = $channelCount; } /** * @return int */ public function getChannelCount() { return $this->channelCount; } /** * @param string[] */ public function setChannelLayout($channelLayout) { $this->channelLayout = $channelLayout; } /** * @return string[] */ public function getChannelLayout() { return $this->channelLayout; } /** * @param string */ public function setCodec($codec) { $this->codec = $codec; } /** * @return string */ public function getCodec() { return $this->codec; } /** * @param AudioMapping[] */ public function setMapping($mapping) { $this->mapping = $mapping; } /** * @return AudioMapping[] */ public function getMapping() { return $this->mapping; } /** * @param int */ public function setSampleRateHertz($sampleRateHertz) { $this->sampleRateHertz = $sampleRateHertz; } /** * @return int */ public function getSampleRateHertz() { return $this->sampleRateHertz; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(AudioStream::class, 'Google_Service_Transcoder_AudioStream');