accelMpsps = $accelMpsps; } /** * @return Measurement3d[] */ public function getAccelMpsps() { return $this->accelMpsps; } /** * The gyroscope measurements in radians/sec with increasing timestamps from * devices. * * @param Measurement3d[] $gyroRps */ public function setGyroRps($gyroRps) { $this->gyroRps = $gyroRps; } /** * @return Measurement3d[] */ public function getGyroRps() { return $this->gyroRps; } /** * The magnetometer measurements of the magnetic field in microtesla (uT) with * increasing timestamps from devices. * * @param Measurement3d[] $magUt */ public function setMagUt($magUt) { $this->magUt = $magUt; } /** * @return Measurement3d[] */ public function getMagUt() { return $this->magUt; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Imu::class, 'Google_Service_StreetViewPublish_Imu');