height = $height; } /** * @return float */ public function getHeight() { return $this->height; } /** * @param string */ public function setUnit($unit) { $this->unit = $unit; } /** * @return string */ public function getUnit() { return $this->unit; } /** * @param float */ public function setWidth($width) { $this->width = $width; } /** * @return float */ public function getWidth() { return $this->width; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudDocumentaiV1beta1DocumentPageDimension::class, 'Google_Service_Document_GoogleCloudDocumentaiV1beta1DocumentPageDimension');