captureTime = $captureTime; } /** * @return string */ public function getCaptureTime() { return $this->captureTime; } /** * The sensor measurement in the x axis. * * @param float $x */ public function setX($x) { $this->x = $x; } /** * @return float */ public function getX() { return $this->x; } /** * The sensor measurement in the y axis. * * @param float $y */ public function setY($y) { $this->y = $y; } /** * @return float */ public function getY() { return $this->y; } /** * The sensor measurement in the z axis. * * @param float $z */ public function setZ($z) { $this->z = $z; } /** * @return float */ public function getZ() { return $this->z; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Measurement3d::class, 'Google_Service_StreetViewPublish_Measurement3d');