fullMatchingImages = $fullMatchingImages; } /** * @return WebImage[] */ public function getFullMatchingImages() { return $this->fullMatchingImages; } /** * Title for the web page, may contain HTML markups. * * @param string $pageTitle */ public function setPageTitle($pageTitle) { $this->pageTitle = $pageTitle; } /** * @return string */ public function getPageTitle() { return $this->pageTitle; } /** * Partial matching images on the page. Those images are similar enough to * share some key-point features. For example an original image will likely * have partial matching for its crops. * * @param WebImage[] $partialMatchingImages */ public function setPartialMatchingImages($partialMatchingImages) { $this->partialMatchingImages = $partialMatchingImages; } /** * @return WebImage[] */ public function getPartialMatchingImages() { return $this->partialMatchingImages; } /** * (Deprecated) Overall relevancy score for the web page. * * @param float $score */ public function setScore($score) { $this->score = $score; } /** * @return float */ public function getScore() { return $this->score; } /** * The result web page URL. * * @param string $url */ public function setUrl($url) { $this->url = $url; } /** * @return string */ public function getUrl() { return $this->url; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(WebPage::class, 'Google_Service_Vision_WebPage');