content = $content; } /** * @return string */ public function getContent() { return $this->content; } /** * The MIME type of the content of the video. Only the following are * supported: video/mp4 video/avi video/quicktime * * @param string $mimeType */ public function setMimeType($mimeType) { $this->mimeType = $mimeType; } /** * @return string */ public function getMimeType() { return $this->mimeType; } /** * The end, exclusive, of the video's time segment on which to perform the * prediction. Expressed as a number of seconds as measured from the start of * the video, with "s" appended at the end. Fractions are allowed, up to a * microsecond precision, and "inf" or "Infinity" is allowed, which means the * end of the video. * * @param string $timeSegmentEnd */ public function setTimeSegmentEnd($timeSegmentEnd) { $this->timeSegmentEnd = $timeSegmentEnd; } /** * @return string */ public function getTimeSegmentEnd() { return $this->timeSegmentEnd; } /** * The beginning, inclusive, of the video's time segment on which to perform * the prediction. Expressed as a number of seconds as measured from the start * of the video, with "s" appended at the end. Fractions are allowed, up to a * microsecond precision. * * @param string $timeSegmentStart */ public function setTimeSegmentStart($timeSegmentStart) { $this->timeSegmentStart = $timeSegmentStart; } /** * @return string */ public function getTimeSegmentStart() { return $this->timeSegmentStart; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudAiplatformV1SchemaPredictInstanceVideoClassificationPredictionInstance::class, 'Google_Service_Aiplatform_GoogleCloudAiplatformV1SchemaPredictInstanceVideoClassificationPredictionInstance');