"Height", "label" => "Label", "left" => "Left", "top" => "Top", "width" => "Width", ]; /** * @var int */ public $height; /** * @var int */ public $label; /** * @var int */ public $left; /** * @var int */ public $top; /** * @var int */ public $width; /** * @param int */ public function setHeight($height) { $this->height = $height; } /** * @return int */ public function getHeight() { return $this->height; } /** * @param int */ public function setLabel($label) { $this->label = $label; } /** * @return int */ public function getLabel() { return $this->label; } /** * @param int */ public function setLeft($left) { $this->left = $left; } /** * @return int */ public function getLeft() { return $this->left; } /** * @param int */ public function setTop($top) { $this->top = $top; } /** * @return int */ public function getTop() { return $this->top; } /** * @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(GoodocBoundingBox::class, 'Google_Service_Contentwarehouse_GoodocBoundingBox');