links = $links; } /** * @return Link[] */ public function getLinks() { return $this->links; } /** * If there might be more results than those appearing in this response, then * nextPageToken is included. To get the next set of results, call the same * method again using the value of nextPageToken as pageToken. * * @param string $nextPageToken */ public function setNextPageToken($nextPageToken) { $this->nextPageToken = $nextPageToken; } /** * @return string */ public function getNextPageToken() { return $this->nextPageToken; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ListLinksResponse::class, 'Google_Service_Logging_ListLinksResponse');