芝麻web文件管理V1.00
编辑当前文件:/home/sditechnicalteam/www/vendor/google/apiclient-services/src/ShoppingContent/Resource/Quotas.php
* $contentService = new Google\Service\ShoppingContent(...); * $quotas = $contentService->quotas; * */ class Quotas extends \Google\Service\Resource { /** * Lists the daily call quota and usage per method for your Merchant Center * account. (quotas.listQuotas) * * @param string $merchantId Required. The ID of the account that has quota. * This account must be an admin. * @param array $optParams Optional parameters. * * @opt_param int pageSize The maximum number of quotas to return in the * response, used for paging. Defaults to 500; values above 1000 will be coerced * to 1000. * @opt_param string pageToken Token (if provided) to retrieve the subsequent * page. All other parameters must match the original call that provided the * page token. * @return ListMethodQuotasResponse */ public function listQuotas($merchantId, $optParams = []) { $params = ['merchantId' => $merchantId]; $params = array_merge($params, $optParams); return $this->call('list', [$params], ListMethodQuotasResponse::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Quotas::class, 'Google_Service_ShoppingContent_Resource_Quotas');