label = $label; } /** * @return LocalizedString */ public function getLabel() { return $this->label; } /** * @param string */ public function setSeverity($severity) { $this->severity = $severity; } /** * @return string */ public function getSeverity() { return $this->severity; } /** * @param string */ public function setUnit($unit) { $this->unit = $unit; } /** * @return string */ public function getUnit() { return $this->unit; } /** * @param float */ public function setValue($value) { $this->value = $value; } /** * @return float */ public function getValue() { return $this->value; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ContextValue::class, 'Google_Service_Spanner_ContextValue');