content = $content; } /** * @return string */ public function getContent() { return $this->content; } /** * @param string[] */ public function setLabels($labels) { $this->labels = $labels; } /** * @return string[] */ public function getLabels() { return $this->labels; } /** * @param string */ public function setMimeType($mimeType) { $this->mimeType = $mimeType; } /** * @return string */ public function getMimeType() { return $this->mimeType; } /** * @param string */ public function setModel($model) { $this->model = $model; } /** * @return string */ public function getModel() { return $this->model; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(DetectLanguageRequest::class, 'Google_Service_Translate_DetectLanguageRequest');