description = $description; } /** * @return string[] */ public function getDescription() { return $this->description; } /** * @param int */ public function setErrorCode($errorCode) { $this->errorCode = $errorCode; } /** * @return int */ public function getErrorCode() { return $this->errorCode; } /** * @param HttpBody */ public function setJsonResponse(HttpBody $jsonResponse) { $this->jsonResponse = $jsonResponse; } /** * @return HttpBody */ public function getJsonResponse() { return $this->jsonResponse; } /** * @param string */ public function setLang($lang) { $this->lang = $lang; } /** * @return string */ public function getLang() { return $this->lang; } /** * @param Notice[] */ public function setNotices($notices) { $this->notices = $notices; } /** * @return Notice[] */ public function getNotices() { return $this->notices; } /** * @param string[] */ public function setRdapConformance($rdapConformance) { $this->rdapConformance = $rdapConformance; } /** * @return string[] */ public function getRdapConformance() { return $this->rdapConformance; } /** * @param string */ public function setTitle($title) { $this->title = $title; } /** * @return string */ public function getTitle() { return $this->title; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(RdapResponse::class, 'Google_Service_DomainsRDAP_RdapResponse');