* $domainsrdapService = new Google\Service\DomainsRDAP(...); * $entity = $domainsrdapService->entity; * */ class Entity extends \Google\Service\Resource { /** * The RDAP API recognizes this command from the RDAP specification but does not * support it. The response is a formatted 501 error. (entity.get) * * @param string $entityId * @param array $optParams Optional parameters. * @return RdapResponse */ public function get($entityId, $optParams = []) { $params = ['entityId' => $entityId]; $params = array_merge($params, $optParams); return $this->call('get', [$params], RdapResponse::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Entity::class, 'Google_Service_DomainsRDAP_Resource_Entity');