bottom = $bottom; } /** * @return Border */ public function getBottom() { return $this->bottom; } /** * @param Border */ public function setLeft(Border $left) { $this->left = $left; } /** * @return Border */ public function getLeft() { return $this->left; } /** * @param Border */ public function setRight(Border $right) { $this->right = $right; } /** * @return Border */ public function getRight() { return $this->right; } /** * @param Border */ public function setTop(Border $top) { $this->top = $top; } /** * @return Border */ public function getTop() { return $this->top; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Borders::class, 'Google_Service_Sheets_Borders');