"Text", ]; /** * @var string */ public $text; protected $timestampType = PseudoVideoDataTranscriptTimestamp::class; protected $timestampDataType = 'array'; /** * @param string */ public function setText($text) { $this->text = $text; } /** * @return string */ public function getText() { return $this->text; } /** * @param PseudoVideoDataTranscriptTimestamp[] */ public function setTimestamp($timestamp) { $this->timestamp = $timestamp; } /** * @return PseudoVideoDataTranscriptTimestamp[] */ public function getTimestamp() { return $this->timestamp; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(PseudoVideoDataTranscript::class, 'Google_Service_Contentwarehouse_PseudoVideoDataTranscript');