pageSize = $pageSize; } /** * @return int */ public function getPageSize() { return $this->pageSize; } /** * Optional. A token that specifies a page of results beyond the first page. * Obtained through FetchReportResultsResponse.next_page_token of the previous * CloudChannelReportsService.FetchReportResults call. * * @param string $pageToken */ public function setPageToken($pageToken) { $this->pageToken = $pageToken; } /** * @return string */ public function getPageToken() { return $this->pageToken; } /** * Optional. List of keys specifying which report partitions to return. If * empty, returns all partitions. * * @param string[] $partitionKeys */ public function setPartitionKeys($partitionKeys) { $this->partitionKeys = $partitionKeys; } /** * @return string[] */ public function getPartitionKeys() { return $this->partitionKeys; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudChannelV1FetchReportResultsRequest::class, 'Google_Service_Cloudchannel_GoogleCloudChannelV1FetchReportResultsRequest');