blocks = $blocks; } /** * @return Block[] */ public function getBlocks() { return $this->blocks; } /** * @param float */ public function setConfidence($confidence) { $this->confidence = $confidence; } /** * @return float */ public function getConfidence() { return $this->confidence; } /** * @param int */ public function setHeight($height) { $this->height = $height; } /** * @return int */ public function getHeight() { return $this->height; } /** * @param TextProperty */ public function setProperty(TextProperty $property) { $this->property = $property; } /** * @return TextProperty */ public function getProperty() { return $this->property; } /** * @param int */ public function setWidth($width) { $this->width = $width; } /** * @return int */ public function getWidth() { return $this->width; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Page::class, 'Google_Service_Vision_Page');