/var/www/flurhymez/vendor/google/apiclient-services/src/Transcoder
Edit: /var/www/flurhymez/vendor/google/apiclient-services/src/Transcoder/ElementaryStream.php (2097B)
audioStream = $audioStream;
}
/**
* @return AudioStream
*/
public function getAudioStream()
{
return $this->audioStream;
}
/**
* @param string
*/
public function setKey($key)
{
$this->key = $key;
}
/**
* @return string
*/
public function getKey()
{
return $this->key;
}
/**
* @param TextStream
*/
public function setTextStream(TextStream $textStream)
{
$this->textStream = $textStream;
}
/**
* @return TextStream
*/
public function getTextStream()
{
return $this->textStream;
}
/**
* @param VideoStream
*/
public function setVideoStream(VideoStream $videoStream)
{
$this->videoStream = $videoStream;
}
/**
* @return VideoStream
*/
public function getVideoStream()
{
return $this->videoStream;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(ElementaryStream::class, 'Google_Service_Transcoder_ElementaryStream');