links = $links; } /** * @return string[] */ public function getLinks() { return $this->links; } /** * Optional. The maximum number of processes to return in a single page of the * response. A page may contain fewer results than this value. * * @param int $pageSize */ public function setPageSize($pageSize) { $this->pageSize = $pageSize; } /** * @return int */ public function getPageSize() { return $this->pageSize; } /** * Optional. The page token received from a previous * `BatchSearchLinkProcesses` call. Use it to get the next page. When * requesting subsequent pages of a response, remember that all parameters * must match the values you provided in the original request. * * @param string $pageToken */ public function setPageToken($pageToken) { $this->pageToken = $pageToken; } /** * @return string */ public function getPageToken() { return $this->pageToken; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudDatacatalogLineageV1BatchSearchLinkProcessesRequest::class, 'Google_Service_Datalineage_GoogleCloudDatacatalogLineageV1BatchSearchLinkProcessesRequest');