Skip to content

Commit 44d0abd

Browse files
committed
Updated ShoppingContent.php
This change has been generated by a script that has detected changes in the discovery doc of the API. Check http://developers.google.com/discovery for more info.
1 parent 5086577 commit 44d0abd

File tree

1 file changed

+50
-2
lines changed

1 file changed

+50
-2
lines changed

src/Google/Service/ShoppingContent.php

Lines changed: 50 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -263,6 +263,14 @@ public function __construct(Google_Client $client)
263263
'type' => 'string',
264264
'required' => true,
265265
),
266+
'pageToken' => array(
267+
'location' => 'query',
268+
'type' => 'string',
269+
),
270+
'maxResults' => array(
271+
'location' => 'query',
272+
'type' => 'integer',
273+
),
266274
),
267275
),'patch' => array(
268276
'path' => '{merchantId}/datafeeds/{datafeedId}',
@@ -332,6 +340,14 @@ public function __construct(Google_Client $client)
332340
'type' => 'string',
333341
'required' => true,
334342
),
343+
'pageToken' => array(
344+
'location' => 'query',
345+
'type' => 'string',
346+
),
347+
'maxResults' => array(
348+
'location' => 'query',
349+
'type' => 'integer',
350+
),
335351
),
336352
),
337353
)
@@ -772,8 +788,13 @@ public function insert($merchantId, Google_Service_ShoppingContent_Datafeed $pos
772788
* (datafeeds.listDatafeeds)
773789
*
774790
* @param string $merchantId
775-
*
791+
* The ID of the managing account.
776792
* @param array $optParams Optional parameters.
793+
*
794+
* @opt_param string pageToken
795+
* The token returned by the previous request.
796+
* @opt_param string maxResults
797+
* The maximum number of products to return in the response, used for paging.
777798
* @return Google_Service_ShoppingContent_DatafeedsListResponse
778799
*/
779800
public function listDatafeeds($merchantId, $optParams = array())
@@ -865,8 +886,13 @@ public function get($merchantId, $datafeedId, $optParams = array())
865886
* (datafeedstatuses.listDatafeedstatuses)
866887
*
867888
* @param string $merchantId
868-
*
889+
* The ID of the managing account.
869890
* @param array $optParams Optional parameters.
891+
*
892+
* @opt_param string pageToken
893+
* The token returned by the previous request.
894+
* @opt_param string maxResults
895+
* The maximum number of products to return in the response, used for paging.
870896
* @return Google_Service_ShoppingContent_DatafeedstatusesListResponse
871897
*/
872898
public function listDatafeedstatuses($merchantId, $optParams = array())
@@ -2427,6 +2453,7 @@ class Google_Service_ShoppingContent_DatafeedsListResponse extends Google_Collec
24272453
protected $internal_gapi_mappings = array(
24282454
);
24292455
public $kind;
2456+
public $nextPageToken;
24302457
protected $resourcesType = 'Google_Service_ShoppingContent_Datafeed';
24312458
protected $resourcesDataType = 'array';
24322459

@@ -2440,6 +2467,16 @@ public function getKind()
24402467
return $this->kind;
24412468
}
24422469

2470+
public function setNextPageToken($nextPageToken)
2471+
{
2472+
$this->nextPageToken = $nextPageToken;
2473+
}
2474+
2475+
public function getNextPageToken()
2476+
{
2477+
return $this->nextPageToken;
2478+
}
2479+
24432480
public function setResources($resources)
24442481
{
24452482
$this->resources = $resources;
@@ -2597,6 +2634,7 @@ class Google_Service_ShoppingContent_DatafeedstatusesListResponse extends Google
25972634
protected $internal_gapi_mappings = array(
25982635
);
25992636
public $kind;
2637+
public $nextPageToken;
26002638
protected $resourcesType = 'Google_Service_ShoppingContent_DatafeedStatus';
26012639
protected $resourcesDataType = 'array';
26022640

@@ -2610,6 +2648,16 @@ public function getKind()
26102648
return $this->kind;
26112649
}
26122650

2651+
public function setNextPageToken($nextPageToken)
2652+
{
2653+
$this->nextPageToken = $nextPageToken;
2654+
}
2655+
2656+
public function getNextPageToken()
2657+
{
2658+
return $this->nextPageToken;
2659+
}
2660+
26132661
public function setResources($resources)
26142662
{
26152663
$this->resources = $resources;

0 commit comments

Comments
 (0)