boolValue = $boolValue; } /** * @return bool */ public function getBoolValue() { return $this->boolValue; } /** * @param ErrorValue */ public function setErrorValue(ErrorValue $errorValue) { $this->errorValue = $errorValue; } /** * @return ErrorValue */ public function getErrorValue() { return $this->errorValue; } /** * @param string */ public function setFormulaValue($formulaValue) { $this->formulaValue = $formulaValue; } /** * @return string */ public function getFormulaValue() { return $this->formulaValue; } public function setNumberValue($numberValue) { $this->numberValue = $numberValue; } public function getNumberValue() { return $this->numberValue; } /** * @param string */ public function setStringValue($stringValue) { $this->stringValue = $stringValue; } /** * @return string */ public function getStringValue() { return $this->stringValue; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ExtendedValue::class, 'Google_Service_Sheets_ExtendedValue');