bitrate = $bitrate; } /** * @return string */ public function getBitrate() { return $this->bitrate; } /** * @param int */ public function setCodecId($codecId) { $this->codecId = $codecId; } /** * @return int */ public function getCodecId() { return $this->codecId; } public function setFps($fps) { $this->fps = $fps; } public function getFps() { return $this->fps; } /** * @param int */ public function setHeight($height) { $this->height = $height; } /** * @return int */ public function getHeight() { return $this->height; } public function setLengthSec($lengthSec) { $this->lengthSec = $lengthSec; } public function getLengthSec() { return $this->lengthSec; } /** * @param string */ public function setStreamIndex($streamIndex) { $this->streamIndex = $streamIndex; } /** * @return string */ public function getStreamIndex() { return $this->streamIndex; } /** * @param int */ public function setWidth($width) { $this->width = $width; } /** * @return int */ public function getWidth() { return $this->width; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(VideoVideoStream::class, 'Google_Service_Contentwarehouse_VideoVideoStream');