angle = $angle; } /** * @return float */ public function getAngle() { return $this->angle; } /** * @param float */ public function setBrightness($brightness) { $this->brightness = $brightness; } /** * @return float */ public function getBrightness() { return $this->brightness; } /** * @param string */ public function setContentUri($contentUri) { $this->contentUri = $contentUri; } /** * @return string */ public function getContentUri() { return $this->contentUri; } /** * @param float */ public function setContrast($contrast) { $this->contrast = $contrast; } /** * @return float */ public function getContrast() { return $this->contrast; } /** * @param CropProperties */ public function setCropProperties(CropProperties $cropProperties) { $this->cropProperties = $cropProperties; } /** * @return CropProperties */ public function getCropProperties() { return $this->cropProperties; } /** * @param string */ public function setSourceUri($sourceUri) { $this->sourceUri = $sourceUri; } /** * @return string */ public function getSourceUri() { return $this->sourceUri; } /** * @param float */ public function setTransparency($transparency) { $this->transparency = $transparency; } /** * @return float */ public function getTransparency() { return $this->transparency; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ImageProperties::class, 'Google_Service_Docs_ImageProperties');