lang = $lang; } /** * @return string */ public function getLang() { return $this->lang; } /** * The URL for the preview image information. * * @param string $previewImageUrl */ public function setPreviewImageUrl($previewImageUrl) { $this->previewImageUrl = $previewImageUrl; } /** * @return string */ public function getPreviewImageUrl() { return $this->previewImageUrl; } /** * The description for this location. * * @param string $snippet */ public function setSnippet($snippet) { $this->snippet = $snippet; } /** * @return string */ public function getSnippet() { return $this->snippet; } /** * The URL for information for this location. Ex: wikipedia link. * * @param string $snippetUrl */ public function setSnippetUrl($snippetUrl) { $this->snippetUrl = $snippetUrl; } /** * @return string */ public function getSnippetUrl() { return $this->snippetUrl; } /** * The display title and localized canonical name to use when searching for * this entity on Google search. * * @param string $title */ public function setTitle($title) { $this->title = $title; } /** * @return string */ public function getTitle() { return $this->title; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GeolayerdataCommon::class, 'Google_Service_Books_GeolayerdataCommon');