arrayValue = $arrayValue; } /** * @return ArrayValue */ public function getArrayValue() { return $this->arrayValue; } /** * @param bool */ public function setBooleanValue($booleanValue) { $this->booleanValue = $booleanValue; } /** * @return bool */ public function getBooleanValue() { return $this->booleanValue; } /** * @param string */ public function setBytesValue($bytesValue) { $this->bytesValue = $bytesValue; } /** * @return string */ public function getBytesValue() { return $this->bytesValue; } public function setDoubleValue($doubleValue) { $this->doubleValue = $doubleValue; } public function getDoubleValue() { return $this->doubleValue; } /** * @param LatLng */ public function setGeoPointValue(LatLng $geoPointValue) { $this->geoPointValue = $geoPointValue; } /** * @return LatLng */ public function getGeoPointValue() { return $this->geoPointValue; } /** * @param string */ public function setIntegerValue($integerValue) { $this->integerValue = $integerValue; } /** * @return string */ public function getIntegerValue() { return $this->integerValue; } /** * @param MapValue */ public function setMapValue(MapValue $mapValue) { $this->mapValue = $mapValue; } /** * @return MapValue */ public function getMapValue() { return $this->mapValue; } /** * @param string */ public function setNullValue($nullValue) { $this->nullValue = $nullValue; } /** * @return string */ public function getNullValue() { return $this->nullValue; } /** * @param string */ public function setReferenceValue($referenceValue) { $this->referenceValue = $referenceValue; } /** * @return string */ public function getReferenceValue() { return $this->referenceValue; } /** * @param string */ public function setStringValue($stringValue) { $this->stringValue = $stringValue; } /** * @return string */ public function getStringValue() { return $this->stringValue; } /** * @param string */ public function setTimestampValue($timestampValue) { $this->timestampValue = $timestampValue; } /** * @return string */ public function getTimestampValue() { return $this->timestampValue; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Value::class, 'Google_Service_Firestore_Value');