* $dfareportingService = new Google\Service\Dfareporting(...); * $billingRates = $dfareportingService->billingRates; * */ class BillingRates extends \Google\Service\Resource { /** * Retrieves a list of billing rates. This method supports paging. * (billingRates.listBillingRates) * * @param string $profileId User profile ID associated with this request. * @param string $billingProfileId Billing profile ID of this billing rate. * @param array $optParams Optional parameters. * @return BillingRatesListResponse * @throws \Google\Service\Exception */ public function listBillingRates($profileId, $billingProfileId, $optParams = []) { $params = ['profileId' => $profileId, 'billingProfileId' => $billingProfileId]; $params = array_merge($params, $optParams); return $this->call('list', [$params], BillingRatesListResponse::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(BillingRates::class, 'Google_Service_Dfareporting_Resource_BillingRates');