x = $x; } /** * @return int */ public function getX() { return $this->x; } /** * @param int */ public function setY($y) { $this->y = $y; } /** * @return int */ public function getY() { return $this->y; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Vertex::class, 'Google_Service_Vision_Vertex');