content = $content; } /** * @return string */ public function getContent() { return $this->content; } /** * The MIME type of the content of the image. Only the images in below listed * MIME types are supported. - image/jpeg - image/gif - image/png - image/webp * - image/bmp - image/tiff - image/vnd.microsoft.icon * * @param string $mimeType */ public function setMimeType($mimeType) { $this->mimeType = $mimeType; } /** * @return string */ public function getMimeType() { return $this->mimeType; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudAiplatformV1SchemaPredictInstanceImageClassificationPredictionInstance::class, 'Google_Service_Aiplatform_GoogleCloudAiplatformV1SchemaPredictInstanceImageClassificationPredictionInstance');