backgroundColor = $backgroundColor; } /** * @return string */ public function getBackgroundColor() { return $this->backgroundColor; } /** * @param string */ public function setColorSpace($colorSpace) { $this->colorSpace = $colorSpace; } /** * @return string */ public function getColorSpace() { return $this->colorSpace; } /** * @param Quaternion */ public function setOrientingRotation(Quaternion $orientingRotation) { $this->orientingRotation = $orientingRotation; } /** * @return Quaternion */ public function getOrientingRotation() { return $this->orientingRotation; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(PresentationParams::class, 'Google_Service_PolyService_PresentationParams');