caption = $caption; } /** * @return string */ public function getCaption() { return $this->caption; } /** * @param Video */ public function setVideo(Video $video) { $this->video = $video; } /** * @return Video */ public function getVideo() { return $this->video; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(VideoItem::class, 'Google_Service_Forms_VideoItem');