booleanValue = $booleanValue; } /** * @return bool */ public function getBooleanValue() { return $this->booleanValue; } public function setDoubleValue($doubleValue) { $this->doubleValue = $doubleValue; } public function getDoubleValue() { return $this->doubleValue; } /** * @param float */ public function setFloatValue($floatValue) { $this->floatValue = $floatValue; } /** * @return float */ public function getFloatValue() { return $this->floatValue; } /** * @param string */ public function setInt64Value($int64Value) { $this->int64Value = $int64Value; } /** * @return string */ public function getInt64Value() { return $this->int64Value; } /** * @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(GoogleAdsSearchads360V0CommonValue::class, 'Google_Service_SA360_GoogleAdsSearchads360V0CommonValue');