altitude = $altitude; } public function getAltitude() { return $this->altitude; } /** * @param int */ public function setIndex($index) { $this->index = $index; } /** * @return int */ public function getIndex() { return $this->index; } public function setLat($lat) { $this->lat = $lat; } public function getLat() { return $this->lat; } public function setLng($lng) { $this->lng = $lng; } public function getLng() { return $this->lng; } public function setPitch($pitch) { $this->pitch = $pitch; } public function getPitch() { return $this->pitch; } public function setRoll($roll) { $this->roll = $roll; } public function getRoll() { return $this->roll; } public function setYaw($yaw) { $this->yaw = $yaw; } public function getYaw() { return $this->yaw; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GeostorePoseProto::class, 'Google_Service_Contentwarehouse_GeostorePoseProto');