blob: 89905c1b325b6e0f082e95a7b5fe70ef92612159 [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">
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">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 Kim673ec5c2020-11-16 11:05:03 -070084 <code><a href="#get">get(merchantId, accountId, destinations=None, x__xgafv=None)</a></code></p>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -070085<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 Kim673ec5c2020-11-16 11:05:03 -070087 <code><a href="#list">list(merchantId, destinations=None, 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 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">
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>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 Kim673ec5c2020-11-16 11:05:03 -0700109 &quot;method&quot;: &quot;A String&quot;, # The method of the batch entry. Acceptable values are: - &quot;`get`&quot;
Bu Sun Kim65020912020-05-20 12:08:20 -0700110 &quot;destinations&quot;: [ # If set, only issues for the specified destinations are returned, otherwise only issues for the Shopping destination.
111 &quot;A String&quot;,
112 ],
113 &quot;merchantId&quot;: &quot;A String&quot;, # The ID of the managing account.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700114 &quot;batchId&quot;: 42, # An entry ID, unique within the batch request.
115 &quot;accountId&quot;: &quot;A String&quot;, # The ID of the (sub-)account whose status to get.
Craig Citro065b5302014-08-14 00:47:23 -0700116 },
117 ],
118 }
119
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700120 x__xgafv: string, V1 error format.
121 Allowed values
122 1 - v1 error format
123 2 - v2 error format
Craig Citro065b5302014-08-14 00:47:23 -0700124
125Returns:
126 An object of the form:
127
128 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700129 &quot;entries&quot;: [ # The result of the execution of the batch requests.
Craig Citroe633be12015-03-02 13:40:36 -0800130 { # A batch entry encoding a single non-batch accountstatuses response.
Bu Sun Kim65020912020-05-20 12:08:20 -0700131 &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.
132 &quot;accountId&quot;: &quot;A String&quot;, # The ID of the account for which the status is reported.
133 &quot;accountLevelIssues&quot;: [ # A list of account level issues.
Craig Citro065b5302014-08-14 00:47:23 -0700134 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700135 &quot;detail&quot;: &quot;A String&quot;, # Additional details about the issue.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700136 &quot;severity&quot;: &quot;A String&quot;, # Severity of the issue. Acceptable values are: - &quot;`critical`&quot; - &quot;`error`&quot; - &quot;`suggestion`&quot;
137 &quot;country&quot;: &quot;A String&quot;, # Country for which this issue is reported.
Bu Sun Kim65020912020-05-20 12:08:20 -0700138 &quot;id&quot;: &quot;A String&quot;, # Issue identifier.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700139 &quot;documentation&quot;: &quot;A String&quot;, # The URL of a web page to help resolving this issue.
140 &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 -0700141 &quot;title&quot;: &quot;A String&quot;, # Short description of the issue.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700142 },
143 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700144 &quot;websiteClaimed&quot;: True or False, # Whether the account&#x27;s website is claimed or not.
145 &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.
146 {
147 &quot;destination&quot;: &quot;A String&quot;, # The destination the data applies to.
148 &quot;channel&quot;: &quot;A String&quot;, # The channel the data applies to. Acceptable values are: - &quot;`local`&quot; - &quot;`online`&quot;
149 &quot;country&quot;: &quot;A String&quot;, # The country the data applies to.
150 &quot;statistics&quot;: { # Aggregated product statistics.
151 &quot;pending&quot;: &quot;A String&quot;, # Number of pending offers.
152 &quot;active&quot;: &quot;A String&quot;, # Number of active offers.
153 &quot;expiring&quot;: &quot;A String&quot;, # Number of expiring offers.
154 &quot;disapproved&quot;: &quot;A String&quot;, # Number of disapproved offers.
155 },
156 &quot;itemLevelIssues&quot;: [ # List of item-level issues.
157 {
158 &quot;resolution&quot;: &quot;A String&quot;, # Whether the issue can be resolved by the merchant.
159 &quot;documentation&quot;: &quot;A String&quot;, # The URL of a web page to help with resolving this issue.
160 &quot;description&quot;: &quot;A String&quot;, # A short issue description in English.
161 &quot;code&quot;: &quot;A String&quot;, # The error code of the issue.
162 &quot;numItems&quot;: &quot;A String&quot;, # Number of items with this issue.
163 &quot;detail&quot;: &quot;A String&quot;, # A detailed issue description in English.
164 &quot;servability&quot;: &quot;A String&quot;, # How this issue affects serving of the offer.
165 &quot;attributeName&quot;: &quot;A String&quot;, # The attribute&#x27;s name, if the issue is caused by a single attribute.
166 },
167 ],
168 },
169 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700170 &quot;dataQualityIssues&quot;: [ # DEPRECATED - never populated.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700171 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700172 &quot;detail&quot;: &quot;A String&quot;,
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700173 &quot;destination&quot;: &quot;A String&quot;,
174 &quot;country&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700175 &quot;displayedValue&quot;: &quot;A String&quot;,
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700176 &quot;location&quot;: &quot;A String&quot;,
177 &quot;lastChecked&quot;: &quot;A String&quot;,
178 &quot;numItems&quot;: 42,
179 &quot;severity&quot;: &quot;A String&quot;, # Acceptable values are: - &quot;`critical`&quot; - &quot;`error`&quot; - &quot;`suggestion`&quot;
180 &quot;id&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700181 &quot;exampleItems&quot;: [
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700182 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700183 &quot;title&quot;: &quot;A String&quot;,
184 &quot;valueOnLandingPage&quot;: &quot;A String&quot;,
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700185 &quot;itemId&quot;: &quot;A String&quot;,
186 &quot;submittedValue&quot;: &quot;A String&quot;,
187 &quot;link&quot;: &quot;A String&quot;,
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700188 },
189 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700190 &quot;submittedValue&quot;: &quot;A String&quot;,
191 },
192 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700193 &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;`content#accountStatus`&quot;
Bu Sun Kim65020912020-05-20 12:08:20 -0700194 },
195 &quot;batchId&quot;: 42, # The ID of the request entry this entry responds to.
196 &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 -0700197 &quot;errors&quot;: [ # A list of errors.
198 { # An error returned by the API.
199 &quot;domain&quot;: &quot;A String&quot;, # The domain of the error.
200 &quot;message&quot;: &quot;A String&quot;, # A description of the error.
201 &quot;reason&quot;: &quot;A String&quot;, # The error code.
Craig Citro065b5302014-08-14 00:47:23 -0700202 },
203 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700204 &quot;message&quot;: &quot;A String&quot;, # The message of the first error in `errors`.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700205 &quot;code&quot;: 42, # The HTTP status of the first error in `errors`.
Craig Citro065b5302014-08-14 00:47:23 -0700206 },
207 },
208 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700209 &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;content#accountstatusesCustomBatchResponse&quot;.
Craig Citro065b5302014-08-14 00:47:23 -0700210 }</pre>
211</div>
212
213<div class="method">
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700214 <code class="details" id="get">get(merchantId, accountId, destinations=None, x__xgafv=None)</code>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700215 <pre>Retrieves the status of a Merchant Center account. No itemLevelIssues are returned for multi-client accounts.
Craig Citro065b5302014-08-14 00:47:23 -0700216
217Args:
Dan O'Mearadd494642020-05-01 07:42:23 -0700218 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 -0700219 accountId: string, The ID of the account. (required)
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700220 destinations: string, If set, only issues for the specified destinations are returned, otherwise only issues for the Shopping destination. (repeated)
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700221 x__xgafv: string, V1 error format.
222 Allowed values
223 1 - v1 error format
224 2 - v2 error format
Craig Citro065b5302014-08-14 00:47:23 -0700225
226Returns:
227 An object of the form:
228
229 { # 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 -0700230 &quot;accountId&quot;: &quot;A String&quot;, # The ID of the account for which the status is reported.
231 &quot;accountLevelIssues&quot;: [ # A list of account level issues.
Craig Citro065b5302014-08-14 00:47:23 -0700232 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700233 &quot;detail&quot;: &quot;A String&quot;, # Additional details about the issue.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700234 &quot;severity&quot;: &quot;A String&quot;, # Severity of the issue. Acceptable values are: - &quot;`critical`&quot; - &quot;`error`&quot; - &quot;`suggestion`&quot;
235 &quot;country&quot;: &quot;A String&quot;, # Country for which this issue is reported.
Bu Sun Kim65020912020-05-20 12:08:20 -0700236 &quot;id&quot;: &quot;A String&quot;, # Issue identifier.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700237 &quot;documentation&quot;: &quot;A String&quot;, # The URL of a web page to help resolving this issue.
238 &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 -0700239 &quot;title&quot;: &quot;A String&quot;, # Short description of the issue.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700240 },
241 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700242 &quot;websiteClaimed&quot;: True or False, # Whether the account&#x27;s website is claimed or not.
243 &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.
244 {
245 &quot;destination&quot;: &quot;A String&quot;, # The destination the data applies to.
246 &quot;channel&quot;: &quot;A String&quot;, # The channel the data applies to. Acceptable values are: - &quot;`local`&quot; - &quot;`online`&quot;
247 &quot;country&quot;: &quot;A String&quot;, # The country the data applies to.
248 &quot;statistics&quot;: { # Aggregated product statistics.
249 &quot;pending&quot;: &quot;A String&quot;, # Number of pending offers.
250 &quot;active&quot;: &quot;A String&quot;, # Number of active offers.
251 &quot;expiring&quot;: &quot;A String&quot;, # Number of expiring offers.
252 &quot;disapproved&quot;: &quot;A String&quot;, # Number of disapproved offers.
253 },
254 &quot;itemLevelIssues&quot;: [ # List of item-level issues.
255 {
256 &quot;resolution&quot;: &quot;A String&quot;, # Whether the issue can be resolved by the merchant.
257 &quot;documentation&quot;: &quot;A String&quot;, # The URL of a web page to help with resolving this issue.
258 &quot;description&quot;: &quot;A String&quot;, # A short issue description in English.
259 &quot;code&quot;: &quot;A String&quot;, # The error code of the issue.
260 &quot;numItems&quot;: &quot;A String&quot;, # Number of items with this issue.
261 &quot;detail&quot;: &quot;A String&quot;, # A detailed issue description in English.
262 &quot;servability&quot;: &quot;A String&quot;, # How this issue affects serving of the offer.
263 &quot;attributeName&quot;: &quot;A String&quot;, # The attribute&#x27;s name, if the issue is caused by a single attribute.
264 },
265 ],
266 },
267 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700268 &quot;dataQualityIssues&quot;: [ # DEPRECATED - never populated.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700269 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700270 &quot;detail&quot;: &quot;A String&quot;,
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700271 &quot;destination&quot;: &quot;A String&quot;,
272 &quot;country&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700273 &quot;displayedValue&quot;: &quot;A String&quot;,
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700274 &quot;location&quot;: &quot;A String&quot;,
275 &quot;lastChecked&quot;: &quot;A String&quot;,
276 &quot;numItems&quot;: 42,
277 &quot;severity&quot;: &quot;A String&quot;, # Acceptable values are: - &quot;`critical`&quot; - &quot;`error`&quot; - &quot;`suggestion`&quot;
278 &quot;id&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700279 &quot;exampleItems&quot;: [
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700280 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700281 &quot;title&quot;: &quot;A String&quot;,
282 &quot;valueOnLandingPage&quot;: &quot;A String&quot;,
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700283 &quot;itemId&quot;: &quot;A String&quot;,
284 &quot;submittedValue&quot;: &quot;A String&quot;,
285 &quot;link&quot;: &quot;A String&quot;,
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700286 },
287 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700288 &quot;submittedValue&quot;: &quot;A String&quot;,
289 },
290 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700291 &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;`content#accountStatus`&quot;
Craig Citro065b5302014-08-14 00:47:23 -0700292 }</pre>
293</div>
294
295<div class="method">
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700296 <code class="details" id="list">list(merchantId, destinations=None, pageToken=None, maxResults=None, x__xgafv=None)</code>
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700297 <pre>Lists the statuses of the sub-accounts in your Merchant Center account.
Craig Citro065b5302014-08-14 00:47:23 -0700298
299Args:
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700300 merchantId: string, The ID of the managing account. This must be a multi-client account. (required)
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700301 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 -0700302 pageToken: string, The token returned by the previous request.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700303 maxResults: integer, The maximum number of account statuses to return in the response, used for paging.
304 x__xgafv: string, V1 error format.
305 Allowed values
306 1 - v1 error format
307 2 - v2 error format
Craig Citro065b5302014-08-14 00:47:23 -0700308
309Returns:
310 An object of the form:
311
312 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700313 &quot;nextPageToken&quot;: &quot;A String&quot;, # The token for the retrieval of the next page of account statuses.
314 &quot;resources&quot;: [
Craig Citro065b5302014-08-14 00:47:23 -0700315 { # 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 -0700316 &quot;accountId&quot;: &quot;A String&quot;, # The ID of the account for which the status is reported.
317 &quot;accountLevelIssues&quot;: [ # A list of account level issues.
Craig Citro065b5302014-08-14 00:47:23 -0700318 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700319 &quot;detail&quot;: &quot;A String&quot;, # Additional details about the issue.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700320 &quot;severity&quot;: &quot;A String&quot;, # Severity of the issue. Acceptable values are: - &quot;`critical`&quot; - &quot;`error`&quot; - &quot;`suggestion`&quot;
321 &quot;country&quot;: &quot;A String&quot;, # Country for which this issue is reported.
Bu Sun Kim65020912020-05-20 12:08:20 -0700322 &quot;id&quot;: &quot;A String&quot;, # Issue identifier.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700323 &quot;documentation&quot;: &quot;A String&quot;, # The URL of a web page to help resolving this issue.
324 &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 -0700325 &quot;title&quot;: &quot;A String&quot;, # Short description of the issue.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700326 },
327 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700328 &quot;websiteClaimed&quot;: True or False, # Whether the account&#x27;s website is claimed or not.
329 &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.
330 {
331 &quot;destination&quot;: &quot;A String&quot;, # The destination the data applies to.
332 &quot;channel&quot;: &quot;A String&quot;, # The channel the data applies to. Acceptable values are: - &quot;`local`&quot; - &quot;`online`&quot;
333 &quot;country&quot;: &quot;A String&quot;, # The country the data applies to.
334 &quot;statistics&quot;: { # Aggregated product statistics.
335 &quot;pending&quot;: &quot;A String&quot;, # Number of pending offers.
336 &quot;active&quot;: &quot;A String&quot;, # Number of active offers.
337 &quot;expiring&quot;: &quot;A String&quot;, # Number of expiring offers.
338 &quot;disapproved&quot;: &quot;A String&quot;, # Number of disapproved offers.
339 },
340 &quot;itemLevelIssues&quot;: [ # List of item-level issues.
341 {
342 &quot;resolution&quot;: &quot;A String&quot;, # Whether the issue can be resolved by the merchant.
343 &quot;documentation&quot;: &quot;A String&quot;, # The URL of a web page to help with resolving this issue.
344 &quot;description&quot;: &quot;A String&quot;, # A short issue description in English.
345 &quot;code&quot;: &quot;A String&quot;, # The error code of the issue.
346 &quot;numItems&quot;: &quot;A String&quot;, # Number of items with this issue.
347 &quot;detail&quot;: &quot;A String&quot;, # A detailed issue description in English.
348 &quot;servability&quot;: &quot;A String&quot;, # How this issue affects serving of the offer.
349 &quot;attributeName&quot;: &quot;A String&quot;, # The attribute&#x27;s name, if the issue is caused by a single attribute.
350 },
351 ],
352 },
353 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700354 &quot;dataQualityIssues&quot;: [ # DEPRECATED - never populated.
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700355 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700356 &quot;detail&quot;: &quot;A String&quot;,
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700357 &quot;destination&quot;: &quot;A String&quot;,
358 &quot;country&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700359 &quot;displayedValue&quot;: &quot;A String&quot;,
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700360 &quot;location&quot;: &quot;A String&quot;,
361 &quot;lastChecked&quot;: &quot;A String&quot;,
362 &quot;numItems&quot;: 42,
363 &quot;severity&quot;: &quot;A String&quot;, # Acceptable values are: - &quot;`critical`&quot; - &quot;`error`&quot; - &quot;`suggestion`&quot;
364 &quot;id&quot;: &quot;A String&quot;,
Bu Sun Kim65020912020-05-20 12:08:20 -0700365 &quot;exampleItems&quot;: [
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700366 {
Bu Sun Kim65020912020-05-20 12:08:20 -0700367 &quot;title&quot;: &quot;A String&quot;,
368 &quot;valueOnLandingPage&quot;: &quot;A String&quot;,
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700369 &quot;itemId&quot;: &quot;A String&quot;,
370 &quot;submittedValue&quot;: &quot;A String&quot;,
371 &quot;link&quot;: &quot;A String&quot;,
Bu Sun Kim715bd7f2019-06-14 16:50:42 -0700372 },
373 ],
Bu Sun Kim65020912020-05-20 12:08:20 -0700374 &quot;submittedValue&quot;: &quot;A String&quot;,
375 },
376 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700377 &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;`content#accountStatus`&quot;
Craig Citro065b5302014-08-14 00:47:23 -0700378 },
379 ],
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700380 &quot;kind&quot;: &quot;A String&quot;, # Identifies what kind of resource this is. Value: the fixed string &quot;content#accountstatusesListResponse&quot;.
Craig Citro065b5302014-08-14 00:47:23 -0700381 }</pre>
382</div>
383
384<div class="method">
385 <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
386 <pre>Retrieves the next page of results.
387
388Args:
389 previous_request: The request for the previous page. (required)
390 previous_response: The response from the request for the previous page. (required)
391
392Returns:
Bu Sun Kim65020912020-05-20 12:08:20 -0700393 A request object that you can call &#x27;execute()&#x27; on to request the next
Craig Citro065b5302014-08-14 00:47:23 -0700394 page. Returns None if there are no more items in the collection.
395 </pre>
396</div>
397
398</body></html>