blob: c223416447d009922391e0199fa1540799f1df7a [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.accountstatuses.html">accountstatuses</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">
Dan O'Mearadd494642020-05-01 07:42:23 -070081 <code><a href="#custombatch">custombatch(body=None)</a></code></p>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070082<p class="firstline">Retrieves multiple Merchant Center account statuses in a single request.</p>
Craig Citro065b5302014-08-14 00:47:23 -070083<p class="toc_element">
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070084 <code><a href="#get">get(merchantId, accountId, destinations=None)</a></code></p>
85<p class="firstline">Retrieves the status of a Merchant Center account. No itemLevelIssues are returned for multi-client accounts.</p>
Craig Citro065b5302014-08-14 00:47:23 -070086<p class="toc_element">
Bu Sun Kim65020912020-05-20 12:08:20 -070087 <code><a href="#list">list(merchantId, destinations=None, maxResults=None, pageToken=None)</a></code></p>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070088<p class="firstline">Lists the statuses of the sub-accounts in your Merchant Center account.</p>
Craig Citro065b5302014-08-14 00:47:23 -070089<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>
92<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">
Dan O'Mearadd494642020-05-01 07:42:23 -070099 <code class="details" id="custombatch">custombatch(body=None)</code>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700100 <pre>Retrieves multiple Merchant Center account 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 accountstatuses request.
Bu Sun Kim65020912020-05-20 12:08:20 -0700109 &quot;accountId&quot;: &quot;A String&quot;, # The ID of the (sub-)account whose status to get.
110 &quot;batchId&quot;: 42, # An entry ID, unique within the batch request.
111 &quot;destinations&quot;: [ # If set, only issues for the specified destinations are returned, otherwise only issues for the Shopping destination.
112 &quot;A String&quot;,
113 ],
114 &quot;merchantId&quot;: &quot;A String&quot;, # The ID of the managing account.
115 &quot;method&quot;: &quot;A String&quot;, # The method of the batch entry.
Dan O'Mearadd494642020-05-01 07:42:23 -0700116 #
117 # Acceptable values are:
Bu Sun Kim65020912020-05-20 12:08:20 -0700118 # - &quot;`get`&quot;
Craig Citro065b5302014-08-14 00:47:23 -0700119 },
120 ],
121 }
122
123
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 accountstatuses response.
Bu Sun Kim65020912020-05-20 12:08:20 -0700130 &quot;accountStatus&quot;: { # The status of an account, i.e., information about its products, which is computed offline and not returned immediately at insertion time. # The requested account status. Defined if and only if the request was successful.
131 &quot;accountId&quot;: &quot;A String&quot;, # The ID of the account for which the status is reported.
132 &quot;accountLevelIssues&quot;: [ # A list of account level issues.
Craig Citro065b5302014-08-14 00:47:23 -0700133 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700134 &quot;country&quot;: &quot;A String&quot;, # Country for which this issue is reported.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700135 &quot;destination&quot;: &quot;A String&quot;, # The destination the issue applies to. If this field is empty then the issue applies to all available destinations.
Bu Sun Kim65020912020-05-20 12:08:20 -0700136 &quot;detail&quot;: &quot;A String&quot;, # Additional details about the issue.
137 &quot;documentation&quot;: &quot;A String&quot;, # The URL of a web page to help resolving this issue.
138 &quot;id&quot;: &quot;A String&quot;, # Issue identifier.
139 &quot;severity&quot;: &quot;A String&quot;, # Severity of the issue.
Dan O'Mearadd494642020-05-01 07:42:23 -0700140 #
141 # Acceptable values are:
Bu Sun Kim65020912020-05-20 12:08:20 -0700142 # - &quot;`critical`&quot;
143 # - &quot;`error`&quot;
144 # - &quot;`suggestion`&quot;
145 &quot;title&quot;: &quot;A String&quot;, # Short description of the issue.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700146 },
147 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700148 &quot;dataQualityIssues&quot;: [ # DEPRECATED - never populated.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700149 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700150 &quot;country&quot;: &quot;A String&quot;,
151 &quot;destination&quot;: &quot;A String&quot;,
152 &quot;detail&quot;: &quot;A String&quot;,
153 &quot;displayedValue&quot;: &quot;A String&quot;,
154 &quot;exampleItems&quot;: [
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700155 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700156 &quot;itemId&quot;: &quot;A String&quot;,
157 &quot;link&quot;: &quot;A String&quot;,
158 &quot;submittedValue&quot;: &quot;A String&quot;,
159 &quot;title&quot;: &quot;A String&quot;,
160 &quot;valueOnLandingPage&quot;: &quot;A String&quot;,
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700161 },
162 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700163 &quot;id&quot;: &quot;A String&quot;,
164 &quot;lastChecked&quot;: &quot;A String&quot;,
165 &quot;location&quot;: &quot;A String&quot;,
166 &quot;numItems&quot;: 42,
167 &quot;severity&quot;: &quot;A String&quot;, # Acceptable values are:
168 # - &quot;`critical`&quot;
169 # - &quot;`error`&quot;
170 # - &quot;`suggestion`&quot;
171 &quot;submittedValue&quot;: &quot;A String&quot;,
172 },
173 ],
174 &quot;kind&quot;: &quot;content#accountStatus&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;`content#accountStatus`&quot;
175 &quot;products&quot;: [ # List of product-related data by channel, destination, and country. Data in this field may be delayed by up to 30 minutes.
176 {
177 &quot;channel&quot;: &quot;A String&quot;, # The channel the data applies to.
Dan O'Mearadd494642020-05-01 07:42:23 -0700178 #
179 # Acceptable values are:
Bu Sun Kim65020912020-05-20 12:08:20 -0700180 # - &quot;`local`&quot;
181 # - &quot;`online`&quot;
182 &quot;country&quot;: &quot;A String&quot;, # The country the data applies to.
183 &quot;destination&quot;: &quot;A String&quot;, # The destination the data applies to.
184 &quot;itemLevelIssues&quot;: [ # List of item-level issues.
185 {
186 &quot;attributeName&quot;: &quot;A String&quot;, # The attribute&#x27;s name, if the issue is caused by a single attribute.
187 &quot;code&quot;: &quot;A String&quot;, # The error code of the issue.
188 &quot;description&quot;: &quot;A String&quot;, # A short issue description in English.
189 &quot;detail&quot;: &quot;A String&quot;, # A detailed issue description in English.
190 &quot;documentation&quot;: &quot;A String&quot;, # The URL of a web page to help with resolving this issue.
191 &quot;numItems&quot;: &quot;A String&quot;, # Number of items with this issue.
192 &quot;resolution&quot;: &quot;A String&quot;, # Whether the issue can be resolved by the merchant.
193 &quot;servability&quot;: &quot;A String&quot;, # How this issue affects serving of the offer.
194 },
195 ],
196 &quot;statistics&quot;: { # Aggregated product statistics.
197 &quot;active&quot;: &quot;A String&quot;, # Number of active offers.
198 &quot;disapproved&quot;: &quot;A String&quot;, # Number of disapproved offers.
199 &quot;expiring&quot;: &quot;A String&quot;, # Number of expiring offers.
200 &quot;pending&quot;: &quot;A String&quot;, # Number of pending offers.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700201 },
202 },
203 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700204 &quot;websiteClaimed&quot;: True or False, # Whether the account&#x27;s website is claimed or not.
205 },
206 &quot;batchId&quot;: 42, # The ID of the request entry this entry responds to.
207 &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.
208 &quot;code&quot;: 42, # The HTTP status of the first error in `errors`.
209 &quot;errors&quot;: [ # A list of errors.
210 { # An error returned by the API.
211 &quot;domain&quot;: &quot;A String&quot;, # The domain of the error.
212 &quot;message&quot;: &quot;A String&quot;, # A description of the error.
213 &quot;reason&quot;: &quot;A String&quot;, # The error code.
Craig Citro065b5302014-08-14 00:47:23 -0700214 },
215 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700216 &quot;message&quot;: &quot;A String&quot;, # The message of the first error in `errors`.
Craig Citro065b5302014-08-14 00:47:23 -0700217 },
218 },
219 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700220 &quot;kind&quot;: &quot;content#accountstatusesCustomBatchResponse&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;content#accountstatusesCustomBatchResponse&quot;.
Craig Citro065b5302014-08-14 00:47:23 -0700221 }</pre>
222</div>
223
224<div class="method">
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700225 <code class="details" id="get">get(merchantId, accountId, destinations=None)</code>
226 <pre>Retrieves the status of a Merchant Center account. No itemLevelIssues are returned for multi-client accounts.
Craig Citro065b5302014-08-14 00:47:23 -0700227
228Args:
Dan O'Mearadd494642020-05-01 07:42:23 -0700229 merchantId: string, The ID of the managing account. If this parameter is not the same as accountId, then this account must be a multi-client account and `accountId` must be the ID of a sub-account of this account. (required)
Craig Citro065b5302014-08-14 00:47:23 -0700230 accountId: string, The ID of the account. (required)
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700231 destinations: string, If set, only issues for the specified destinations are returned, otherwise only issues for the Shopping destination. (repeated)
Craig Citro065b5302014-08-14 00:47:23 -0700232
233Returns:
234 An object of the form:
235
236 { # The status of an account, i.e., information about its products, which is computed offline and not returned immediately at insertion time.
Bu Sun Kim65020912020-05-20 12:08:20 -0700237 &quot;accountId&quot;: &quot;A String&quot;, # The ID of the account for which the status is reported.
238 &quot;accountLevelIssues&quot;: [ # A list of account level issues.
Craig Citro065b5302014-08-14 00:47:23 -0700239 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700240 &quot;country&quot;: &quot;A String&quot;, # Country for which this issue is reported.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700241 &quot;destination&quot;: &quot;A String&quot;, # The destination the issue applies to. If this field is empty then the issue applies to all available destinations.
Bu Sun Kim65020912020-05-20 12:08:20 -0700242 &quot;detail&quot;: &quot;A String&quot;, # Additional details about the issue.
243 &quot;documentation&quot;: &quot;A String&quot;, # The URL of a web page to help resolving this issue.
244 &quot;id&quot;: &quot;A String&quot;, # Issue identifier.
245 &quot;severity&quot;: &quot;A String&quot;, # Severity of the issue.
Dan O'Mearadd494642020-05-01 07:42:23 -0700246 #
247 # Acceptable values are:
Bu Sun Kim65020912020-05-20 12:08:20 -0700248 # - &quot;`critical`&quot;
249 # - &quot;`error`&quot;
250 # - &quot;`suggestion`&quot;
251 &quot;title&quot;: &quot;A String&quot;, # Short description of the issue.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700252 },
253 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700254 &quot;dataQualityIssues&quot;: [ # DEPRECATED - never populated.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700255 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700256 &quot;country&quot;: &quot;A String&quot;,
257 &quot;destination&quot;: &quot;A String&quot;,
258 &quot;detail&quot;: &quot;A String&quot;,
259 &quot;displayedValue&quot;: &quot;A String&quot;,
260 &quot;exampleItems&quot;: [
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700261 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700262 &quot;itemId&quot;: &quot;A String&quot;,
263 &quot;link&quot;: &quot;A String&quot;,
264 &quot;submittedValue&quot;: &quot;A String&quot;,
265 &quot;title&quot;: &quot;A String&quot;,
266 &quot;valueOnLandingPage&quot;: &quot;A String&quot;,
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700267 },
268 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700269 &quot;id&quot;: &quot;A String&quot;,
270 &quot;lastChecked&quot;: &quot;A String&quot;,
271 &quot;location&quot;: &quot;A String&quot;,
272 &quot;numItems&quot;: 42,
273 &quot;severity&quot;: &quot;A String&quot;, # Acceptable values are:
274 # - &quot;`critical`&quot;
275 # - &quot;`error`&quot;
276 # - &quot;`suggestion`&quot;
277 &quot;submittedValue&quot;: &quot;A String&quot;,
278 },
279 ],
280 &quot;kind&quot;: &quot;content#accountStatus&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;`content#accountStatus`&quot;
281 &quot;products&quot;: [ # List of product-related data by channel, destination, and country. Data in this field may be delayed by up to 30 minutes.
282 {
283 &quot;channel&quot;: &quot;A String&quot;, # The channel the data applies to.
Dan O'Mearadd494642020-05-01 07:42:23 -0700284 #
285 # Acceptable values are:
Bu Sun Kim65020912020-05-20 12:08:20 -0700286 # - &quot;`local`&quot;
287 # - &quot;`online`&quot;
288 &quot;country&quot;: &quot;A String&quot;, # The country the data applies to.
289 &quot;destination&quot;: &quot;A String&quot;, # The destination the data applies to.
290 &quot;itemLevelIssues&quot;: [ # List of item-level issues.
291 {
292 &quot;attributeName&quot;: &quot;A String&quot;, # The attribute&#x27;s name, if the issue is caused by a single attribute.
293 &quot;code&quot;: &quot;A String&quot;, # The error code of the issue.
294 &quot;description&quot;: &quot;A String&quot;, # A short issue description in English.
295 &quot;detail&quot;: &quot;A String&quot;, # A detailed issue description in English.
296 &quot;documentation&quot;: &quot;A String&quot;, # The URL of a web page to help with resolving this issue.
297 &quot;numItems&quot;: &quot;A String&quot;, # Number of items with this issue.
298 &quot;resolution&quot;: &quot;A String&quot;, # Whether the issue can be resolved by the merchant.
299 &quot;servability&quot;: &quot;A String&quot;, # How this issue affects serving of the offer.
300 },
301 ],
302 &quot;statistics&quot;: { # Aggregated product statistics.
303 &quot;active&quot;: &quot;A String&quot;, # Number of active offers.
304 &quot;disapproved&quot;: &quot;A String&quot;, # Number of disapproved offers.
305 &quot;expiring&quot;: &quot;A String&quot;, # Number of expiring offers.
306 &quot;pending&quot;: &quot;A String&quot;, # Number of pending offers.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700307 },
308 },
309 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700310 &quot;websiteClaimed&quot;: True or False, # Whether the account&#x27;s website is claimed or not.
Craig Citro065b5302014-08-14 00:47:23 -0700311 }</pre>
312</div>
313
314<div class="method">
Bu Sun Kim65020912020-05-20 12:08:20 -0700315 <code class="details" id="list">list(merchantId, destinations=None, maxResults=None, pageToken=None)</code>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700316 <pre>Lists the statuses of the sub-accounts in your Merchant Center account.
Craig Citro065b5302014-08-14 00:47:23 -0700317
318Args:
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700319 merchantId: string, The ID of the managing account. This must be a multi-client account. (required)
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700320 destinations: string, If set, only issues for the specified destinations are returned, otherwise only issues for the Shopping destination. (repeated)
Bu Sun Kim65020912020-05-20 12:08:20 -0700321 maxResults: integer, The maximum number of account statuses to return in the response, used for paging.
322 pageToken: string, The token returned by the previous request.
Craig Citro065b5302014-08-14 00:47:23 -0700323
324Returns:
325 An object of the form:
326
327 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700328 &quot;kind&quot;: &quot;content#accountstatusesListResponse&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;content#accountstatusesListResponse&quot;.
329 &quot;nextPageToken&quot;: &quot;A String&quot;, # The token for the retrieval of the next page of account statuses.
330 &quot;resources&quot;: [
Craig Citro065b5302014-08-14 00:47:23 -0700331 { # The status of an account, i.e., information about its products, which is computed offline and not returned immediately at insertion time.
Bu Sun Kim65020912020-05-20 12:08:20 -0700332 &quot;accountId&quot;: &quot;A String&quot;, # The ID of the account for which the status is reported.
333 &quot;accountLevelIssues&quot;: [ # A list of account level issues.
Craig Citro065b5302014-08-14 00:47:23 -0700334 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700335 &quot;country&quot;: &quot;A String&quot;, # Country for which this issue is reported.
Dmitry Frenkel3e17f892020-10-06 16:46:05 -0700336 &quot;destination&quot;: &quot;A String&quot;, # The destination the issue applies to. If this field is empty then the issue applies to all available destinations.
Bu Sun Kim65020912020-05-20 12:08:20 -0700337 &quot;detail&quot;: &quot;A String&quot;, # Additional details about the issue.
338 &quot;documentation&quot;: &quot;A String&quot;, # The URL of a web page to help resolving this issue.
339 &quot;id&quot;: &quot;A String&quot;, # Issue identifier.
340 &quot;severity&quot;: &quot;A String&quot;, # Severity of the issue.
Dan O'Mearadd494642020-05-01 07:42:23 -0700341 #
342 # Acceptable values are:
Bu Sun Kim65020912020-05-20 12:08:20 -0700343 # - &quot;`critical`&quot;
344 # - &quot;`error`&quot;
345 # - &quot;`suggestion`&quot;
346 &quot;title&quot;: &quot;A String&quot;, # Short description of the issue.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700347 },
348 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700349 &quot;dataQualityIssues&quot;: [ # DEPRECATED - never populated.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700350 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700351 &quot;country&quot;: &quot;A String&quot;,
352 &quot;destination&quot;: &quot;A String&quot;,
353 &quot;detail&quot;: &quot;A String&quot;,
354 &quot;displayedValue&quot;: &quot;A String&quot;,
355 &quot;exampleItems&quot;: [
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700356 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700357 &quot;itemId&quot;: &quot;A String&quot;,
358 &quot;link&quot;: &quot;A String&quot;,
359 &quot;submittedValue&quot;: &quot;A String&quot;,
360 &quot;title&quot;: &quot;A String&quot;,
361 &quot;valueOnLandingPage&quot;: &quot;A String&quot;,
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700362 },
363 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700364 &quot;id&quot;: &quot;A String&quot;,
365 &quot;lastChecked&quot;: &quot;A String&quot;,
366 &quot;location&quot;: &quot;A String&quot;,
367 &quot;numItems&quot;: 42,
368 &quot;severity&quot;: &quot;A String&quot;, # Acceptable values are:
369 # - &quot;`critical`&quot;
370 # - &quot;`error`&quot;
371 # - &quot;`suggestion`&quot;
372 &quot;submittedValue&quot;: &quot;A String&quot;,
373 },
374 ],
375 &quot;kind&quot;: &quot;content#accountStatus&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;`content#accountStatus`&quot;
376 &quot;products&quot;: [ # List of product-related data by channel, destination, and country. Data in this field may be delayed by up to 30 minutes.
377 {
378 &quot;channel&quot;: &quot;A String&quot;, # The channel the data applies to.
Dan O'Mearadd494642020-05-01 07:42:23 -0700379 #
380 # Acceptable values are:
Bu Sun Kim65020912020-05-20 12:08:20 -0700381 # - &quot;`local`&quot;
382 # - &quot;`online`&quot;
383 &quot;country&quot;: &quot;A String&quot;, # The country the data applies to.
384 &quot;destination&quot;: &quot;A String&quot;, # The destination the data applies to.
385 &quot;itemLevelIssues&quot;: [ # List of item-level issues.
386 {
387 &quot;attributeName&quot;: &quot;A String&quot;, # The attribute&#x27;s name, if the issue is caused by a single attribute.
388 &quot;code&quot;: &quot;A String&quot;, # The error code of the issue.
389 &quot;description&quot;: &quot;A String&quot;, # A short issue description in English.
390 &quot;detail&quot;: &quot;A String&quot;, # A detailed issue description in English.
391 &quot;documentation&quot;: &quot;A String&quot;, # The URL of a web page to help with resolving this issue.
392 &quot;numItems&quot;: &quot;A String&quot;, # Number of items with this issue.
393 &quot;resolution&quot;: &quot;A String&quot;, # Whether the issue can be resolved by the merchant.
394 &quot;servability&quot;: &quot;A String&quot;, # How this issue affects serving of the offer.
395 },
396 ],
397 &quot;statistics&quot;: { # Aggregated product statistics.
398 &quot;active&quot;: &quot;A String&quot;, # Number of active offers.
399 &quot;disapproved&quot;: &quot;A String&quot;, # Number of disapproved offers.
400 &quot;expiring&quot;: &quot;A String&quot;, # Number of expiring offers.
401 &quot;pending&quot;: &quot;A String&quot;, # Number of pending offers.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700402 },
403 },
404 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700405 &quot;websiteClaimed&quot;: True or False, # Whether the account&#x27;s website is claimed or not.
Craig Citro065b5302014-08-14 00:47:23 -0700406 },
407 ],
408 }</pre>
409</div>
410
411<div class="method">
412 <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
413 <pre>Retrieves the next page of results.
414
415Args:
416 previous_request: The request for the previous page. (required)
417 previous_response: The response from the request for the previous page. (required)
418
419Returns:
Bu Sun Kim65020912020-05-20 12:08:20 -0700420 A request object that you can call &#x27;execute()&#x27; on to request the next
Craig Citro065b5302014-08-14 00:47:23 -0700421 page. Returns None if there are no more items in the collection.
422 </pre>
423</div>
424
425</body></html>