gcsSource = $gcsSource; } /** * @return GcsSource */ public function getGcsSource() { return $this->gcsSource; } /** * Optional. Can be "text/plain" or "text/html". For `.tsv`, "text/html" is * used if mime_type is missing. For `.html`, this field must be "text/html" * or empty. For `.txt`, this field must be "text/plain" or empty. * * @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(InputConfig::class, 'Google_Service_Translate_InputConfig');