blob: ad0a8278b79ef9aed2186c361e9f3314f2300b0d [file] [log] [blame]
Craig Citro065b5302014-08-14 00:47:23 -07001<html><body>
2<style>
3
4body, h1, h2, h3, div, span, p, pre, a {
5 margin: 0;
6 padding: 0;
7 border: 0;
8 font-weight: inherit;
9 font-style: inherit;
10 font-size: 100%;
11 font-family: inherit;
12 vertical-align: baseline;
13}
14
15body {
16 font-size: 13px;
17 padding: 1em;
18}
19
20h1 {
21 font-size: 26px;
22 margin-bottom: 1em;
23}
24
25h2 {
26 font-size: 24px;
27 margin-bottom: 1em;
28}
29
30h3 {
31 font-size: 20px;
32 margin-bottom: 1em;
33 margin-top: 1em;
34}
35
36pre, code {
37 line-height: 1.5;
38 font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
39}
40
41pre {
42 margin-top: 0.5em;
43}
44
45h1, h2, h3, p {
46 font-family: Arial, sans serif;
47}
48
49h1, h2, h3 {
50 border-bottom: solid #CCC 1px;
51}
52
53.toc_element {
54 margin-top: 0.5em;
55}
56
57.firstline {
58 margin-left: 2 em;
59}
60
61.method {
62 margin-top: 1em;
63 border: solid 1px #CCC;
64 padding: 1em;
65 background: #EEE;
66}
67
68.details {
69 font-weight: bold;
70 font-size: 14px;
71}
72
73</style>
74
75<h1><a href="content_v2.html">Content API for Shopping</a> . <a href="content_v2.datafeedstatuses.html">datafeedstatuses</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070078 <code><a href="#close">close()</a></code></p>
79<p class="firstline">Close httplib2 connections.</p>
80<p class="toc_element">
Bu Sun Kim673ec5c2020-11-16 11:05:03 -070081 <code><a href="#custombatch">custombatch(body=None, x__xgafv=None)</a></code></p>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070082<p class="firstline">Gets multiple Merchant Center datafeed statuses in a single request.</p>
Craig Citro065b5302014-08-14 00:47:23 -070083<p class="toc_element">
Bu Sun Kim673ec5c2020-11-16 11:05:03 -070084 <code><a href="#get">get(merchantId, datafeedId, country=None, language=None, x__xgafv=None)</a></code></p>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070085<p class="firstline">Retrieves the status of a datafeed from your Merchant Center account.</p>
Craig Citro065b5302014-08-14 00:47:23 -070086<p class="toc_element">
Bu Sun Kim673ec5c2020-11-16 11:05:03 -070087 <code><a href="#list">list(merchantId, pageToken=None, maxResults=None, x__xgafv=None)</a></code></p>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070088<p class="firstline">Lists the statuses of the datafeeds in your Merchant Center account.</p>
Craig Citroe633be12015-03-02 13:40:36 -080089<p class="toc_element">
90 <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
91<p class="firstline">Retrieves the next page of results.</p>
Craig Citro065b5302014-08-14 00:47:23 -070092<h3>Method Details</h3>
93<div class="method">
Dmitry Frenkel3e17f892020-10-06 16:46:05 -070094 <code class="details" id="close">close()</code>
95 <pre>Close httplib2 connections.</pre>
96</div>
97
98<div class="method">
Bu Sun Kim673ec5c2020-11-16 11:05:03 -070099 <code class="details" id="custombatch">custombatch(body=None, x__xgafv=None)</code>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700100 <pre>Gets multiple Merchant Center datafeed statuses in a single request.
Craig Citro065b5302014-08-14 00:47:23 -0700101
102Args:
Dan O'Mearadd494642020-05-01 07:42:23 -0700103 body: object, The request body.
Craig Citro065b5302014-08-14 00:47:23 -0700104 The object takes the form of:
105
106{
Bu Sun Kim65020912020-05-20 12:08:20 -0700107 &quot;entries&quot;: [ # The request entries to be processed in the batch.
Craig Citroe633be12015-03-02 13:40:36 -0800108 { # A batch entry encoding a single non-batch datafeedstatuses request.
Bu Sun Kim65020912020-05-20 12:08:20 -0700109 &quot;language&quot;: &quot;A String&quot;, # The language for which to get the datafeed status. If this parameter is provided then country must also be provided. Note that for multi-target datafeeds this parameter is required.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700110 &quot;datafeedId&quot;: &quot;A String&quot;, # The ID of the data feed to get.
111 &quot;method&quot;: &quot;A String&quot;, # The method of the batch entry. Acceptable values are: - &quot;`get`&quot;
112 &quot;batchId&quot;: 42, # An entry ID, unique within the batch request.
Bu Sun Kim65020912020-05-20 12:08:20 -0700113 &quot;merchantId&quot;: &quot;A String&quot;, # The ID of the managing account.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700114 &quot;country&quot;: &quot;A String&quot;, # The country for which to get the datafeed status. If this parameter is provided then language must also be provided. Note that for multi-target datafeeds this parameter is required.
Craig Citro065b5302014-08-14 00:47:23 -0700115 },
116 ],
117 }
118
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700119 x__xgafv: string, V1 error format.
120 Allowed values
121 1 - v1 error format
122 2 - v2 error format
Craig Citro065b5302014-08-14 00:47:23 -0700123
124Returns:
125 An object of the form:
126
127 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700128 &quot;entries&quot;: [ # The result of the execution of the batch requests.
Craig Citroe633be12015-03-02 13:40:36 -0800129 { # A batch entry encoding a single non-batch datafeedstatuses response.
Bu Sun Kim65020912020-05-20 12:08:20 -0700130 &quot;datafeedStatus&quot;: { # The status of a datafeed, i.e., the result of the last retrieval of the datafeed computed asynchronously when the feed processing is finished. # The requested data feed status. Defined if and only if the request was successful.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700131 &quot;lastUploadDate&quot;: &quot;A String&quot;, # The last date at which the feed was uploaded.
132 &quot;warnings&quot;: [ # The list of errors occurring in the feed.
Bu Sun Kim65020912020-05-20 12:08:20 -0700133 { # An error occurring in the feed, like &quot;invalid price&quot;.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700134 &quot;message&quot;: &quot;A String&quot;, # The error message, e.g., &quot;Invalid price&quot;.
Bu Sun Kim65020912020-05-20 12:08:20 -0700135 &quot;count&quot;: &quot;A String&quot;, # The number of occurrences of the error in the feed.
136 &quot;examples&quot;: [ # A list of example occurrences of the error, grouped by product.
137 { # An example occurrence for a particular error.
138 &quot;itemId&quot;: &quot;A String&quot;, # The ID of the example item.
139 &quot;lineNumber&quot;: &quot;A String&quot;, # Line number in the data feed where the example is found.
140 &quot;value&quot;: &quot;A String&quot;, # The problematic value.
141 },
142 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700143 &quot;code&quot;: &quot;A String&quot;, # The code of the error, e.g., &quot;validation/invalid_value&quot;.
Bu Sun Kim65020912020-05-20 12:08:20 -0700144 },
145 ],
146 &quot;itemsTotal&quot;: &quot;A String&quot;, # The number of items in the feed that were processed.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700147 &quot;country&quot;: &quot;A String&quot;, # The country for which the status is reported, represented as a CLDR territory code.
Bu Sun Kim65020912020-05-20 12:08:20 -0700148 &quot;language&quot;: &quot;A String&quot;, # The two-letter ISO 639-1 language for which the status is reported.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700149 &quot;datafeedId&quot;: &quot;A String&quot;, # The ID of the feed for which the status is reported.
150 &quot;processingStatus&quot;: &quot;A String&quot;, # The processing status of the feed. Acceptable values are: - &quot;`&quot;`failure`&quot;: The feed could not be processed or all items had errors.`&quot; - &quot;`in progress`&quot;: The feed is being processed. - &quot;`none`&quot;: The feed has not yet been processed. For example, a feed that has never been uploaded will have this processing status. - &quot;`success`&quot;: The feed was processed successfully, though some items might have had errors.
151 &quot;itemsValid&quot;: &quot;A String&quot;, # The number of items in the feed that were valid.
152 &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;`content#datafeedStatus`&quot;
153 &quot;errors&quot;: [ # The list of errors occurring in the feed.
Bu Sun Kim65020912020-05-20 12:08:20 -0700154 { # An error occurring in the feed, like &quot;invalid price&quot;.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700155 &quot;message&quot;: &quot;A String&quot;, # The error message, e.g., &quot;Invalid price&quot;.
Bu Sun Kim65020912020-05-20 12:08:20 -0700156 &quot;count&quot;: &quot;A String&quot;, # The number of occurrences of the error in the feed.
157 &quot;examples&quot;: [ # A list of example occurrences of the error, grouped by product.
158 { # An example occurrence for a particular error.
159 &quot;itemId&quot;: &quot;A String&quot;, # The ID of the example item.
160 &quot;lineNumber&quot;: &quot;A String&quot;, # Line number in the data feed where the example is found.
161 &quot;value&quot;: &quot;A String&quot;, # The problematic value.
162 },
163 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700164 &quot;code&quot;: &quot;A String&quot;, # The code of the error, e.g., &quot;validation/invalid_value&quot;.
Craig Citro065b5302014-08-14 00:47:23 -0700165 },
166 ],
167 },
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700168 &quot;batchId&quot;: 42, # The ID of the request entry this entry responds to.
Bu Sun Kim65020912020-05-20 12:08:20 -0700169 &quot;errors&quot;: { # A list of errors returned by a failed batch entry. # A list of errors defined if and only if the request failed.
Bu Sun Kim65020912020-05-20 12:08:20 -0700170 &quot;errors&quot;: [ # A list of errors.
171 { # An error returned by the API.
172 &quot;domain&quot;: &quot;A String&quot;, # The domain of the error.
173 &quot;message&quot;: &quot;A String&quot;, # A description of the error.
174 &quot;reason&quot;: &quot;A String&quot;, # The error code.
Craig Citro065b5302014-08-14 00:47:23 -0700175 },
176 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700177 &quot;message&quot;: &quot;A String&quot;, # The message of the first error in `errors`.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700178 &quot;code&quot;: 42, # The HTTP status of the first error in `errors`.
Craig Citro065b5302014-08-14 00:47:23 -0700179 },
180 },
181 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700182 &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;content#datafeedstatusesCustomBatchResponse&quot;.
Craig Citro065b5302014-08-14 00:47:23 -0700183 }</pre>
184</div>
185
186<div class="method">
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700187 <code class="details" id="get">get(merchantId, datafeedId, country=None, language=None, x__xgafv=None)</code>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700188 <pre>Retrieves the status of a datafeed from your Merchant Center account.
Craig Citro065b5302014-08-14 00:47:23 -0700189
190Args:
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700191 merchantId: string, The ID of the account that manages the datafeed. This account cannot be a multi-client account. (required)
192 datafeedId: string, The ID of the datafeed. (required)
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700193 country: string, The country for which to get the datafeed status. If this parameter is provided then language must also be provided. Note that this parameter is required for feeds targeting multiple countries and languages, since a feed may have a different status for each target.
Bu Sun Kim65020912020-05-20 12:08:20 -0700194 language: string, The language for which to get the datafeed status. If this parameter is provided then country must also be provided. Note that this parameter is required for feeds targeting multiple countries and languages, since a feed may have a different status for each target.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700195 x__xgafv: string, V1 error format.
196 Allowed values
197 1 - v1 error format
198 2 - v2 error format
Craig Citro065b5302014-08-14 00:47:23 -0700199
200Returns:
201 An object of the form:
202
Craig Citroe633be12015-03-02 13:40:36 -0800203 { # The status of a datafeed, i.e., the result of the last retrieval of the datafeed computed asynchronously when the feed processing is finished.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700204 &quot;lastUploadDate&quot;: &quot;A String&quot;, # The last date at which the feed was uploaded.
205 &quot;warnings&quot;: [ # The list of errors occurring in the feed.
Bu Sun Kim65020912020-05-20 12:08:20 -0700206 { # An error occurring in the feed, like &quot;invalid price&quot;.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700207 &quot;message&quot;: &quot;A String&quot;, # The error message, e.g., &quot;Invalid price&quot;.
Bu Sun Kim65020912020-05-20 12:08:20 -0700208 &quot;count&quot;: &quot;A String&quot;, # The number of occurrences of the error in the feed.
209 &quot;examples&quot;: [ # A list of example occurrences of the error, grouped by product.
Craig Citro065b5302014-08-14 00:47:23 -0700210 { # An example occurrence for a particular error.
Bu Sun Kim65020912020-05-20 12:08:20 -0700211 &quot;itemId&quot;: &quot;A String&quot;, # The ID of the example item.
212 &quot;lineNumber&quot;: &quot;A String&quot;, # Line number in the data feed where the example is found.
213 &quot;value&quot;: &quot;A String&quot;, # The problematic value.
Craig Citro065b5302014-08-14 00:47:23 -0700214 },
215 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700216 &quot;code&quot;: &quot;A String&quot;, # The code of the error, e.g., &quot;validation/invalid_value&quot;.
Craig Citro065b5302014-08-14 00:47:23 -0700217 },
218 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700219 &quot;itemsTotal&quot;: &quot;A String&quot;, # The number of items in the feed that were processed.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700220 &quot;country&quot;: &quot;A String&quot;, # The country for which the status is reported, represented as a CLDR territory code.
Bu Sun Kim65020912020-05-20 12:08:20 -0700221 &quot;language&quot;: &quot;A String&quot;, # The two-letter ISO 639-1 language for which the status is reported.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700222 &quot;datafeedId&quot;: &quot;A String&quot;, # The ID of the feed for which the status is reported.
223 &quot;processingStatus&quot;: &quot;A String&quot;, # The processing status of the feed. Acceptable values are: - &quot;`&quot;`failure`&quot;: The feed could not be processed or all items had errors.`&quot; - &quot;`in progress`&quot;: The feed is being processed. - &quot;`none`&quot;: The feed has not yet been processed. For example, a feed that has never been uploaded will have this processing status. - &quot;`success`&quot;: The feed was processed successfully, though some items might have had errors.
224 &quot;itemsValid&quot;: &quot;A String&quot;, # The number of items in the feed that were valid.
225 &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;`content#datafeedStatus`&quot;
226 &quot;errors&quot;: [ # The list of errors occurring in the feed.
Bu Sun Kim65020912020-05-20 12:08:20 -0700227 { # An error occurring in the feed, like &quot;invalid price&quot;.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700228 &quot;message&quot;: &quot;A String&quot;, # The error message, e.g., &quot;Invalid price&quot;.
Bu Sun Kim65020912020-05-20 12:08:20 -0700229 &quot;count&quot;: &quot;A String&quot;, # The number of occurrences of the error in the feed.
230 &quot;examples&quot;: [ # A list of example occurrences of the error, grouped by product.
Craig Citro065b5302014-08-14 00:47:23 -0700231 { # An example occurrence for a particular error.
Bu Sun Kim65020912020-05-20 12:08:20 -0700232 &quot;itemId&quot;: &quot;A String&quot;, # The ID of the example item.
233 &quot;lineNumber&quot;: &quot;A String&quot;, # Line number in the data feed where the example is found.
234 &quot;value&quot;: &quot;A String&quot;, # The problematic value.
Craig Citro065b5302014-08-14 00:47:23 -0700235 },
236 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700237 &quot;code&quot;: &quot;A String&quot;, # The code of the error, e.g., &quot;validation/invalid_value&quot;.
Craig Citro065b5302014-08-14 00:47:23 -0700238 },
239 ],
Craig Citro065b5302014-08-14 00:47:23 -0700240 }</pre>
241</div>
242
243<div class="method">
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700244 <code class="details" id="list">list(merchantId, pageToken=None, maxResults=None, x__xgafv=None)</code>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700245 <pre>Lists the statuses of the datafeeds in your Merchant Center account.
Craig Citro065b5302014-08-14 00:47:23 -0700246
247Args:
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700248 merchantId: string, The ID of the account that manages the datafeeds. This account cannot be a multi-client account. (required)
Bu Sun Kim65020912020-05-20 12:08:20 -0700249 pageToken: string, The token returned by the previous request.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700250 maxResults: integer, The maximum number of products to return in the response, used for paging.
251 x__xgafv: string, V1 error format.
252 Allowed values
253 1 - v1 error format
254 2 - v2 error format
Craig Citro065b5302014-08-14 00:47:23 -0700255
256Returns:
257 An object of the form:
258
259 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700260 &quot;nextPageToken&quot;: &quot;A String&quot;, # The token for the retrieval of the next page of datafeed statuses.
261 &quot;resources&quot;: [
Craig Citroe633be12015-03-02 13:40:36 -0800262 { # The status of a datafeed, i.e., the result of the last retrieval of the datafeed computed asynchronously when the feed processing is finished.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700263 &quot;lastUploadDate&quot;: &quot;A String&quot;, # The last date at which the feed was uploaded.
264 &quot;warnings&quot;: [ # The list of errors occurring in the feed.
Bu Sun Kim65020912020-05-20 12:08:20 -0700265 { # An error occurring in the feed, like &quot;invalid price&quot;.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700266 &quot;message&quot;: &quot;A String&quot;, # The error message, e.g., &quot;Invalid price&quot;.
Bu Sun Kim65020912020-05-20 12:08:20 -0700267 &quot;count&quot;: &quot;A String&quot;, # The number of occurrences of the error in the feed.
268 &quot;examples&quot;: [ # A list of example occurrences of the error, grouped by product.
Craig Citro065b5302014-08-14 00:47:23 -0700269 { # An example occurrence for a particular error.
Bu Sun Kim65020912020-05-20 12:08:20 -0700270 &quot;itemId&quot;: &quot;A String&quot;, # The ID of the example item.
271 &quot;lineNumber&quot;: &quot;A String&quot;, # Line number in the data feed where the example is found.
272 &quot;value&quot;: &quot;A String&quot;, # The problematic value.
Craig Citro065b5302014-08-14 00:47:23 -0700273 },
274 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700275 &quot;code&quot;: &quot;A String&quot;, # The code of the error, e.g., &quot;validation/invalid_value&quot;.
Craig Citro065b5302014-08-14 00:47:23 -0700276 },
277 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700278 &quot;itemsTotal&quot;: &quot;A String&quot;, # The number of items in the feed that were processed.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700279 &quot;country&quot;: &quot;A String&quot;, # The country for which the status is reported, represented as a CLDR territory code.
Bu Sun Kim65020912020-05-20 12:08:20 -0700280 &quot;language&quot;: &quot;A String&quot;, # The two-letter ISO 639-1 language for which the status is reported.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700281 &quot;datafeedId&quot;: &quot;A String&quot;, # The ID of the feed for which the status is reported.
282 &quot;processingStatus&quot;: &quot;A String&quot;, # The processing status of the feed. Acceptable values are: - &quot;`&quot;`failure`&quot;: The feed could not be processed or all items had errors.`&quot; - &quot;`in progress`&quot;: The feed is being processed. - &quot;`none`&quot;: The feed has not yet been processed. For example, a feed that has never been uploaded will have this processing status. - &quot;`success`&quot;: The feed was processed successfully, though some items might have had errors.
283 &quot;itemsValid&quot;: &quot;A String&quot;, # The number of items in the feed that were valid.
284 &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;`content#datafeedStatus`&quot;
285 &quot;errors&quot;: [ # The list of errors occurring in the feed.
Bu Sun Kim65020912020-05-20 12:08:20 -0700286 { # An error occurring in the feed, like &quot;invalid price&quot;.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700287 &quot;message&quot;: &quot;A String&quot;, # The error message, e.g., &quot;Invalid price&quot;.
Bu Sun Kim65020912020-05-20 12:08:20 -0700288 &quot;count&quot;: &quot;A String&quot;, # The number of occurrences of the error in the feed.
289 &quot;examples&quot;: [ # A list of example occurrences of the error, grouped by product.
Craig Citro065b5302014-08-14 00:47:23 -0700290 { # An example occurrence for a particular error.
Bu Sun Kim65020912020-05-20 12:08:20 -0700291 &quot;itemId&quot;: &quot;A String&quot;, # The ID of the example item.
292 &quot;lineNumber&quot;: &quot;A String&quot;, # Line number in the data feed where the example is found.
293 &quot;value&quot;: &quot;A String&quot;, # The problematic value.
Craig Citro065b5302014-08-14 00:47:23 -0700294 },
295 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700296 &quot;code&quot;: &quot;A String&quot;, # The code of the error, e.g., &quot;validation/invalid_value&quot;.
Craig Citro065b5302014-08-14 00:47:23 -0700297 },
298 ],
Craig Citro065b5302014-08-14 00:47:23 -0700299 },
300 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700301 &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;content#datafeedstatusesListResponse&quot;.
Craig Citro065b5302014-08-14 00:47:23 -0700302 }</pre>
303</div>
304
Craig Citroe633be12015-03-02 13:40:36 -0800305<div class="method">
306 <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
307 <pre>Retrieves the next page of results.
308
309Args:
310 previous_request: The request for the previous page. (required)
311 previous_response: The response from the request for the previous page. (required)
312
313Returns:
Bu Sun Kim65020912020-05-20 12:08:20 -0700314 A request object that you can call &#x27;execute()&#x27; on to request the next
Craig Citroe633be12015-03-02 13:40:36 -0800315 page. Returns None if there are no more items in the collection.
316 </pre>
317</div>
318
Craig Citro065b5302014-08-14 00:47:23 -0700319</body></html>