"Description", "lastName" => "LastName", "otherNames" => "OtherNames", ]; /** * @var string */ public $description; /** * @var string */ public $lastName; /** * @var string */ public $otherNames; /** * @param string */ public function setDescription($description) { $this->description = $description; } /** * @return string */ public function getDescription() { return $this->description; } /** * @param string */ public function setLastName($lastName) { $this->lastName = $lastName; } /** * @return string */ public function getLastName() { return $this->lastName; } /** * @param string */ public function setOtherNames($otherNames) { $this->otherNames = $otherNames; } /** * @return string */ public function getOtherNames() { return $this->otherNames; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(LegalPerson::class, 'Google_Service_Contentwarehouse_LegalPerson');