description = $description; } /** * @return string */ public function getDescription() { return $this->description; } /** * @param string */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param GlossaryTermsPair */ public function setTermsPair(GlossaryTermsPair $termsPair) { $this->termsPair = $termsPair; } /** * @return GlossaryTermsPair */ public function getTermsPair() { return $this->termsPair; } /** * @param GlossaryTermsSet */ public function setTermsSet(GlossaryTermsSet $termsSet) { $this->termsSet = $termsSet; } /** * @return GlossaryTermsSet */ public function getTermsSet() { return $this->termsSet; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GlossaryEntry::class, 'Google_Service_Translate_GlossaryEntry');