deprecated = $deprecated; } /** * @return bool */ public function getDeprecated() { return $this->deprecated; } /** * @param string */ public function setDisplayName($displayName) { $this->displayName = $displayName; } /** * @return string */ public function getDisplayName() { return $this->displayName; } /** * @param string */ public function setGroupDisplayName($groupDisplayName) { $this->groupDisplayName = $groupDisplayName; } /** * @return string */ public function getGroupDisplayName() { return $this->groupDisplayName; } /** * @param string */ public function setParent($parent) { $this->parent = $parent; } /** * @return string */ public function getParent() { return $this->parent; } /** * @param bool */ public function setRepeatable($repeatable) { $this->repeatable = $repeatable; } /** * @return bool */ public function getRepeatable() { return $this->repeatable; } /** * @param AttributeValueMetadata[] */ public function setValueMetadata($valueMetadata) { $this->valueMetadata = $valueMetadata; } /** * @return AttributeValueMetadata[] */ public function getValueMetadata() { return $this->valueMetadata; } /** * @param string */ public function setValueType($valueType) { $this->valueType = $valueType; } /** * @return string */ public function getValueType() { return $this->valueType; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(AttributeMetadata::class, 'Google_Service_MyBusinessBusinessInformation_AttributeMetadata');