name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param string */ public function setParent($parent) { $this->parent = $parent; } /** * @return string */ public function getParent() { return $this->parent; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(V2LookupKeyResponse::class, 'Google_Service_ApiKeysService_V2LookupKeyResponse');