name = $name;
}
/**
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* @param CaribouAttributeValue
*/
public function setValue(CaribouAttributeValue $value)
{
$this->value = $value;
}
/**
* @return CaribouAttributeValue
*/
public function getValue()
{
return $this->value;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(Attribute::class, 'Google_Service_CloudSearch_Attribute');