documentationRootUrl = $documentationRootUrl; } /** * @return string */ public function getDocumentationRootUrl() { return $this->documentationRootUrl; } /** * @param string */ public function setOverview($overview) { $this->overview = $overview; } /** * @return string */ public function getOverview() { return $this->overview; } /** * @param Page[] */ public function setPages($pages) { $this->pages = $pages; } /** * @return Page[] */ public function getPages() { return $this->pages; } /** * @param DocumentationRule[] */ public function setRules($rules) { $this->rules = $rules; } /** * @return DocumentationRule[] */ public function getRules() { return $this->rules; } /** * @param string */ public function setServiceRootUrl($serviceRootUrl) { $this->serviceRootUrl = $serviceRootUrl; } /** * @return string */ public function getServiceRootUrl() { return $this->serviceRootUrl; } /** * @param string */ public function setSummary($summary) { $this->summary = $summary; } /** * @return string */ public function getSummary() { return $this->summary; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Documentation::class, 'Google_Service_ServiceConsumerManagement_Documentation');