nextPageToken = $nextPageToken; } /** * @return string */ public function getNextPageToken() { return $this->nextPageToken; } /** * Contains the search results for the given query. Each DocumentChunk in this * list contains a snippet of content relevant to the search query. Use the * DocumentChunk.parent field of each result with * DeveloperKnowledge.GetDocument or DeveloperKnowledge.BatchGetDocuments to * retrieve the full document content. * * @param DocumentChunk[] $results */ public function setResults($results) { $this->results = $results; } /** * @return DocumentChunk[] */ public function getResults() { return $this->results; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(SearchDocumentChunksResponse::class, 'Google_Service_DeveloperKnowledge_SearchDocumentChunksResponse');