* $domainsrdapService = new Google\Service\DomainsRDAP(...); * $nameserver = $domainsrdapService->nameserver; * */ class Nameserver 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. (nameserver.get) * * @param string $nameserverId * @param array $optParams Optional parameters. * @return RdapResponse */ public function get($nameserverId, $optParams = []) { $params = ['nameserverId' => $nameserverId]; $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(Nameserver::class, 'Google_Service_DomainsRDAP_Resource_Nameserver');