name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param RepeatedEnumAttributeValue */ public function setRepeatedEnumValue(RepeatedEnumAttributeValue $repeatedEnumValue) { $this->repeatedEnumValue = $repeatedEnumValue; } /** * @return RepeatedEnumAttributeValue */ public function getRepeatedEnumValue() { return $this->repeatedEnumValue; } /** * @param UriAttributeValue[] */ public function setUriValues($uriValues) { $this->uriValues = $uriValues; } /** * @return UriAttributeValue[] */ public function getUriValues() { return $this->uriValues; } /** * @param string */ public function setValueType($valueType) { $this->valueType = $valueType; } /** * @return string */ public function getValueType() { return $this->valueType; } /** * @param array[] */ public function setValues($values) { $this->values = $values; } /** * @return array[] */ public function getValues() { return $this->values; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Attribute::class, 'Google_Service_MyBusinessBusinessInformation_Attribute');