content = $content; } /** * @return string */ public function getContent() { return $this->content; } /** * @param string */ public function setContentType($contentType) { $this->contentType = $contentType; } /** * @return string */ public function getContentType() { return $this->contentType; } /** * @param string */ 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(InsertContent::class, 'Google_Service_CloudSearch_InsertContent');