label = $label; } /** * @return string */ public function getLabel() { return $this->label; } /** * @param LocalizedString */ public function setLocalizedLabel(LocalizedString $localizedLabel) { $this->localizedLabel = $localizedLabel; } /** * @return LocalizedString */ public function getLocalizedLabel() { return $this->localizedLabel; } /** * @param LocalizedString */ public function setLocalizedValue(LocalizedString $localizedValue) { $this->localizedValue = $localizedValue; } /** * @return LocalizedString */ public function getLocalizedValue() { return $this->localizedValue; } /** * @param string */ public function setValue($value) { $this->value = $value; } /** * @return string */ public function getValue() { return $this->value; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(LabelValue::class, 'Google_Service_Walletobjects_LabelValue');