inputUri = $inputUri; } /** * @return string */ public function getInputUri() { return $this->inputUri; } /** * Required. The format of the source file. Only "text/csv" is supported. * * @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(GoogleCloudDatalabelingV1beta1GcsSource::class, 'Google_Service_DataLabeling_GoogleCloudDatalabelingV1beta1GcsSource');