* $dfareportingService = new Google\Service\Dfareporting(...); * $dimensionValues = $dfareportingService->dimensionValues; * */ class DimensionValues extends \Google\Service\Resource { /** * Retrieves list of report dimension values for a list of filters. * (dimensionValues.query) * * @param string $profileId The Campaign Manager 360 user profile ID. * @param DimensionValueRequest $postBody * @param array $optParams Optional parameters. * * @opt_param int maxResults Maximum number of results to return. * @opt_param string pageToken The value of the nextToken from the previous * result page. * @return DimensionValueList * @throws \Google\Service\Exception */ public function query($profileId, DimensionValueRequest $postBody, $optParams = []) { $params = ['profileId' => $profileId, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('query', [$params], DimensionValueList::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(DimensionValues::class, 'Google_Service_Dfareporting_Resource_DimensionValues');