"IsCJK", "lastName" => "LastName", "otherNames" => "OtherNames", ]; /** * @var bool */ public $isCJK; /** * @var string */ public $lastName; /** * @var string */ public $otherNames; /** * @param bool */ public function setIsCJK($isCJK) { $this->isCJK = $isCJK; } /** * @return bool */ public function getIsCJK() { return $this->isCJK; } /** * @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(SciencePerDocDataAuthor::class, 'Google_Service_Contentwarehouse_SciencePerDocDataAuthor');