acronym = $acronym; } /** * @return string */ public function getAcronym() { return $this->acronym; } /** * The category group that the audit belongs to (optional). * * @param string $group */ public function setGroup($group) { $this->group = $group; } /** * @return string */ public function getGroup() { return $this->group; } /** * The audit ref id. * * @param string $id */ public function setId($id) { $this->id = $id; } /** * @return string */ public function getId() { return $this->id; } /** * Any audit IDs closely relevant to this one. * * @param string[] $relevantAudits */ public function setRelevantAudits($relevantAudits) { $this->relevantAudits = $relevantAudits; } /** * @return string[] */ public function getRelevantAudits() { return $this->relevantAudits; } public function setWeight($weight) { $this->weight = $weight; } public function getWeight() { return $this->weight; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(AuditRefs::class, 'Google_Service_PagespeedInsights_AuditRefs');