rows \Google\Service\Exception */ public function get($merchantId, $datafeedId, $optParams = []) { $params = ['merchantId' => $merchantId, 'datafeedId' => $datafeedId]; $params = array_merge($params, $optParams); return $this->call('get', [$params], Datafeed::class); } /** * Registers a datafeed configuration with your Merchant Center account. * (datafeeds.insert) * * @param string $merchantId The ID of the account that manages the datafeed. * This account cannot be a multi-client account. * @param Datafeed $postBody * @param array $optParams Optional parameters. * @return Datafeed * @throws \Google\Service\Exception */ public function insert($merchantId, Datafeed $postBody, $optParams = []) { $params = ['merchantId' => $merchantId, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('insert', [$params], Datafeed::class); } /** * Lists the configurations for datafeeds in your Merchant Center account. * (datafeeds.listDatafeeds) * * @param string $merchantId The ID of the account that manages the datafeeds. * This account cannot be a multi-client account. * @param array $optParams Optional parameters. * * @opt_param string maxResults The maximum number of products to return in the * response, used for paging. * @opt_param string pageToken The token returned by the previous request. * @return DatafeedsListResponse * @throws \Google\Service\Exception */ public function listDatafeeds($merchantId, $optParams = []) { $params = ['merchantId' => $merchantId]; $params = array_merge($params, $optParams); return $this->call('list', [$params], DatafeedsListResponse::class); } /** * Updates a datafeed configuration of your Merchant Center account. Any fields * that are not provided are deleted from the resource. (datafeeds.update) * * @param string $merchantId The ID of the account that manages the datafeed. * This account cannot be a multi-client account. * @param string $datafeedId The ID of the datafeed. * @param Datafeed $postBody * @param array $optParams Optional parameters. * @return Datafeed * @throws \Google\Service\Exception */ public function update($merchantId, $datafeedId, Datafeed $postBody, $optParams = []) { $params = ['merchantId' => $merchantId, 'datafeedId' => $datafeedId, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('update', [$params], Datafeed::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Datafeeds::class, 'Google_Service_ShoppingContent_Resource_Datafeeds');