Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(189)

Side by Side Diff: generated/googleapis/test/content/v2_test.dart

Issue 2571553005: Api-roll 43: 2016-12-13 (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 library googleapis.content.v2.test; 1 library googleapis.content.v2.test;
2 2
3 import "dart:core" as core; 3 import "dart:core" as core;
4 import "dart:collection" as collection; 4 import "dart:collection" as collection;
5 import "dart:async" as async; 5 import "dart:async" as async;
6 import "dart:convert" as convert; 6 import "dart:convert" as convert;
7 7
8 import 'package:http/http.dart' as http; 8 import 'package:http/http.dart' as http;
9 import 'package:http/testing.dart' as http_testing; 9 import 'package:http/testing.dart' as http_testing;
10 import 'package:unittest/unittest.dart' as unittest; 10 import 'package:unittest/unittest.dart' as unittest;
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 } 44 }
45 } 45 }
46 } 46 }
47 47
48 http.StreamedResponse stringResponse( 48 http.StreamedResponse stringResponse(
49 core.int status, core.Map headers, core.String body) { 49 core.int status, core.Map headers, core.String body) {
50 var stream = new async.Stream.fromIterable([convert.UTF8.encode(body)]); 50 var stream = new async.Stream.fromIterable([convert.UTF8.encode(body)]);
51 return new http.StreamedResponse(stream, status, headers: headers); 51 return new http.StreamedResponse(stream, status, headers: headers);
52 } 52 }
53 53
54 buildUnnamed513() { 54 buildUnnamed252() {
55 var o = new core.List<api.AccountAdwordsLink>(); 55 var o = new core.List<api.AccountAdwordsLink>();
56 o.add(buildAccountAdwordsLink()); 56 o.add(buildAccountAdwordsLink());
57 o.add(buildAccountAdwordsLink()); 57 o.add(buildAccountAdwordsLink());
58 return o; 58 return o;
59 } 59 }
60 60
61 checkUnnamed513(core.List<api.AccountAdwordsLink> o) { 61 checkUnnamed252(core.List<api.AccountAdwordsLink> o) {
62 unittest.expect(o, unittest.hasLength(2)); 62 unittest.expect(o, unittest.hasLength(2));
63 checkAccountAdwordsLink(o[0]); 63 checkAccountAdwordsLink(o[0]);
64 checkAccountAdwordsLink(o[1]); 64 checkAccountAdwordsLink(o[1]);
65 } 65 }
66 66
67 buildUnnamed514() { 67 buildUnnamed253() {
68 var o = new core.List<api.AccountUser>(); 68 var o = new core.List<api.AccountUser>();
69 o.add(buildAccountUser()); 69 o.add(buildAccountUser());
70 o.add(buildAccountUser()); 70 o.add(buildAccountUser());
71 return o; 71 return o;
72 } 72 }
73 73
74 checkUnnamed514(core.List<api.AccountUser> o) { 74 checkUnnamed253(core.List<api.AccountUser> o) {
75 unittest.expect(o, unittest.hasLength(2)); 75 unittest.expect(o, unittest.hasLength(2));
76 checkAccountUser(o[0]); 76 checkAccountUser(o[0]);
77 checkAccountUser(o[1]); 77 checkAccountUser(o[1]);
78 } 78 }
79 79
80 core.int buildCounterAccount = 0; 80 core.int buildCounterAccount = 0;
81 buildAccount() { 81 buildAccount() {
82 var o = new api.Account(); 82 var o = new api.Account();
83 buildCounterAccount++; 83 buildCounterAccount++;
84 if (buildCounterAccount < 3) { 84 if (buildCounterAccount < 3) {
85 o.adultContent = true; 85 o.adultContent = true;
86 o.adwordsLinks = buildUnnamed513(); 86 o.adwordsLinks = buildUnnamed252();
87 o.id = "foo"; 87 o.id = "foo";
88 o.kind = "foo"; 88 o.kind = "foo";
89 o.name = "foo"; 89 o.name = "foo";
90 o.reviewsUrl = "foo"; 90 o.reviewsUrl = "foo";
91 o.sellerId = "foo"; 91 o.sellerId = "foo";
92 o.users = buildUnnamed514(); 92 o.users = buildUnnamed253();
93 o.websiteUrl = "foo"; 93 o.websiteUrl = "foo";
94 } 94 }
95 buildCounterAccount--; 95 buildCounterAccount--;
96 return o; 96 return o;
97 } 97 }
98 98
99 checkAccount(api.Account o) { 99 checkAccount(api.Account o) {
100 buildCounterAccount++; 100 buildCounterAccount++;
101 if (buildCounterAccount < 3) { 101 if (buildCounterAccount < 3) {
102 unittest.expect(o.adultContent, unittest.isTrue); 102 unittest.expect(o.adultContent, unittest.isTrue);
103 checkUnnamed513(o.adwordsLinks); 103 checkUnnamed252(o.adwordsLinks);
104 unittest.expect(o.id, unittest.equals('foo')); 104 unittest.expect(o.id, unittest.equals('foo'));
105 unittest.expect(o.kind, unittest.equals('foo')); 105 unittest.expect(o.kind, unittest.equals('foo'));
106 unittest.expect(o.name, unittest.equals('foo')); 106 unittest.expect(o.name, unittest.equals('foo'));
107 unittest.expect(o.reviewsUrl, unittest.equals('foo')); 107 unittest.expect(o.reviewsUrl, unittest.equals('foo'));
108 unittest.expect(o.sellerId, unittest.equals('foo')); 108 unittest.expect(o.sellerId, unittest.equals('foo'));
109 checkUnnamed514(o.users); 109 checkUnnamed253(o.users);
110 unittest.expect(o.websiteUrl, unittest.equals('foo')); 110 unittest.expect(o.websiteUrl, unittest.equals('foo'));
111 } 111 }
112 buildCounterAccount--; 112 buildCounterAccount--;
113 } 113 }
114 114
115 core.int buildCounterAccountAdwordsLink = 0; 115 core.int buildCounterAccountAdwordsLink = 0;
116 buildAccountAdwordsLink() { 116 buildAccountAdwordsLink() {
117 var o = new api.AccountAdwordsLink(); 117 var o = new api.AccountAdwordsLink();
118 buildCounterAccountAdwordsLink++; 118 buildCounterAccountAdwordsLink++;
119 if (buildCounterAccountAdwordsLink < 3) { 119 if (buildCounterAccountAdwordsLink < 3) {
(...skipping 27 matching lines...) Expand all
147 147
148 checkAccountIdentifier(api.AccountIdentifier o) { 148 checkAccountIdentifier(api.AccountIdentifier o) {
149 buildCounterAccountIdentifier++; 149 buildCounterAccountIdentifier++;
150 if (buildCounterAccountIdentifier < 3) { 150 if (buildCounterAccountIdentifier < 3) {
151 unittest.expect(o.aggregatorId, unittest.equals('foo')); 151 unittest.expect(o.aggregatorId, unittest.equals('foo'));
152 unittest.expect(o.merchantId, unittest.equals('foo')); 152 unittest.expect(o.merchantId, unittest.equals('foo'));
153 } 153 }
154 buildCounterAccountIdentifier--; 154 buildCounterAccountIdentifier--;
155 } 155 }
156 156
157 buildUnnamed515() { 157 buildUnnamed254() {
158 var o = new core.List<api.AccountShippingCarrierRate>(); 158 var o = new core.List<api.AccountShippingCarrierRate>();
159 o.add(buildAccountShippingCarrierRate()); 159 o.add(buildAccountShippingCarrierRate());
160 o.add(buildAccountShippingCarrierRate()); 160 o.add(buildAccountShippingCarrierRate());
161 return o; 161 return o;
162 } 162 }
163 163
164 checkUnnamed515(core.List<api.AccountShippingCarrierRate> o) { 164 checkUnnamed254(core.List<api.AccountShippingCarrierRate> o) {
165 unittest.expect(o, unittest.hasLength(2)); 165 unittest.expect(o, unittest.hasLength(2));
166 checkAccountShippingCarrierRate(o[0]); 166 checkAccountShippingCarrierRate(o[0]);
167 checkAccountShippingCarrierRate(o[1]); 167 checkAccountShippingCarrierRate(o[1]);
168 } 168 }
169 169
170 buildUnnamed516() { 170 buildUnnamed255() {
171 var o = new core.List<api.AccountShippingLocationGroup>(); 171 var o = new core.List<api.AccountShippingLocationGroup>();
172 o.add(buildAccountShippingLocationGroup()); 172 o.add(buildAccountShippingLocationGroup());
173 o.add(buildAccountShippingLocationGroup()); 173 o.add(buildAccountShippingLocationGroup());
174 return o; 174 return o;
175 } 175 }
176 176
177 checkUnnamed516(core.List<api.AccountShippingLocationGroup> o) { 177 checkUnnamed255(core.List<api.AccountShippingLocationGroup> o) {
178 unittest.expect(o, unittest.hasLength(2)); 178 unittest.expect(o, unittest.hasLength(2));
179 checkAccountShippingLocationGroup(o[0]); 179 checkAccountShippingLocationGroup(o[0]);
180 checkAccountShippingLocationGroup(o[1]); 180 checkAccountShippingLocationGroup(o[1]);
181 } 181 }
182 182
183 buildUnnamed517() { 183 buildUnnamed256() {
184 var o = new core.List<api.AccountShippingRateTable>(); 184 var o = new core.List<api.AccountShippingRateTable>();
185 o.add(buildAccountShippingRateTable()); 185 o.add(buildAccountShippingRateTable());
186 o.add(buildAccountShippingRateTable()); 186 o.add(buildAccountShippingRateTable());
187 return o; 187 return o;
188 } 188 }
189 189
190 checkUnnamed517(core.List<api.AccountShippingRateTable> o) { 190 checkUnnamed256(core.List<api.AccountShippingRateTable> o) {
191 unittest.expect(o, unittest.hasLength(2)); 191 unittest.expect(o, unittest.hasLength(2));
192 checkAccountShippingRateTable(o[0]); 192 checkAccountShippingRateTable(o[0]);
193 checkAccountShippingRateTable(o[1]); 193 checkAccountShippingRateTable(o[1]);
194 } 194 }
195 195
196 buildUnnamed518() { 196 buildUnnamed257() {
197 var o = new core.List<api.AccountShippingShippingService>(); 197 var o = new core.List<api.AccountShippingShippingService>();
198 o.add(buildAccountShippingShippingService()); 198 o.add(buildAccountShippingShippingService());
199 o.add(buildAccountShippingShippingService()); 199 o.add(buildAccountShippingShippingService());
200 return o; 200 return o;
201 } 201 }
202 202
203 checkUnnamed518(core.List<api.AccountShippingShippingService> o) { 203 checkUnnamed257(core.List<api.AccountShippingShippingService> o) {
204 unittest.expect(o, unittest.hasLength(2)); 204 unittest.expect(o, unittest.hasLength(2));
205 checkAccountShippingShippingService(o[0]); 205 checkAccountShippingShippingService(o[0]);
206 checkAccountShippingShippingService(o[1]); 206 checkAccountShippingShippingService(o[1]);
207 } 207 }
208 208
209 core.int buildCounterAccountShipping = 0; 209 core.int buildCounterAccountShipping = 0;
210 buildAccountShipping() { 210 buildAccountShipping() {
211 var o = new api.AccountShipping(); 211 var o = new api.AccountShipping();
212 buildCounterAccountShipping++; 212 buildCounterAccountShipping++;
213 if (buildCounterAccountShipping < 3) { 213 if (buildCounterAccountShipping < 3) {
214 o.accountId = "foo"; 214 o.accountId = "foo";
215 o.carrierRates = buildUnnamed515(); 215 o.carrierRates = buildUnnamed254();
216 o.kind = "foo"; 216 o.kind = "foo";
217 o.locationGroups = buildUnnamed516(); 217 o.locationGroups = buildUnnamed255();
218 o.rateTables = buildUnnamed517(); 218 o.rateTables = buildUnnamed256();
219 o.services = buildUnnamed518(); 219 o.services = buildUnnamed257();
220 } 220 }
221 buildCounterAccountShipping--; 221 buildCounterAccountShipping--;
222 return o; 222 return o;
223 } 223 }
224 224
225 checkAccountShipping(api.AccountShipping o) { 225 checkAccountShipping(api.AccountShipping o) {
226 buildCounterAccountShipping++; 226 buildCounterAccountShipping++;
227 if (buildCounterAccountShipping < 3) { 227 if (buildCounterAccountShipping < 3) {
228 unittest.expect(o.accountId, unittest.equals('foo')); 228 unittest.expect(o.accountId, unittest.equals('foo'));
229 checkUnnamed515(o.carrierRates); 229 checkUnnamed254(o.carrierRates);
230 unittest.expect(o.kind, unittest.equals('foo')); 230 unittest.expect(o.kind, unittest.equals('foo'));
231 checkUnnamed516(o.locationGroups); 231 checkUnnamed255(o.locationGroups);
232 checkUnnamed517(o.rateTables); 232 checkUnnamed256(o.rateTables);
233 checkUnnamed518(o.services); 233 checkUnnamed257(o.services);
234 } 234 }
235 buildCounterAccountShipping--; 235 buildCounterAccountShipping--;
236 } 236 }
237 237
238 core.int buildCounterAccountShippingCarrierRate = 0; 238 core.int buildCounterAccountShippingCarrierRate = 0;
239 buildAccountShippingCarrierRate() { 239 buildAccountShippingCarrierRate() {
240 var o = new api.AccountShippingCarrierRate(); 240 var o = new api.AccountShippingCarrierRate();
241 buildCounterAccountShippingCarrierRate++; 241 buildCounterAccountShippingCarrierRate++;
242 if (buildCounterAccountShippingCarrierRate < 3) { 242 if (buildCounterAccountShippingCarrierRate < 3) {
243 o.carrier = "foo"; 243 o.carrier = "foo";
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
290 unittest.expect(o.deliveryLocationId, unittest.equals('foo')); 290 unittest.expect(o.deliveryLocationId, unittest.equals('foo'));
291 unittest.expect(o.deliveryPostalCode, unittest.equals('foo')); 291 unittest.expect(o.deliveryPostalCode, unittest.equals('foo'));
292 checkAccountShippingPostalCodeRange(o.deliveryPostalCodeRange); 292 checkAccountShippingPostalCodeRange(o.deliveryPostalCodeRange);
293 checkPrice(o.priceMax); 293 checkPrice(o.priceMax);
294 unittest.expect(o.shippingLabel, unittest.equals('foo')); 294 unittest.expect(o.shippingLabel, unittest.equals('foo'));
295 checkWeight(o.weightMax); 295 checkWeight(o.weightMax);
296 } 296 }
297 buildCounterAccountShippingCondition--; 297 buildCounterAccountShippingCondition--;
298 } 298 }
299 299
300 buildUnnamed519() { 300 buildUnnamed258() {
301 var o = new core.List<core.String>(); 301 var o = new core.List<core.String>();
302 o.add("foo"); 302 o.add("foo");
303 o.add("foo"); 303 o.add("foo");
304 return o; 304 return o;
305 } 305 }
306 306
307 checkUnnamed519(core.List<core.String> o) { 307 checkUnnamed258(core.List<core.String> o) {
308 unittest.expect(o, unittest.hasLength(2)); 308 unittest.expect(o, unittest.hasLength(2));
309 unittest.expect(o[0], unittest.equals('foo')); 309 unittest.expect(o[0], unittest.equals('foo'));
310 unittest.expect(o[1], unittest.equals('foo')); 310 unittest.expect(o[1], unittest.equals('foo'));
311 } 311 }
312 312
313 buildUnnamed520() { 313 buildUnnamed259() {
314 var o = new core.List<api.AccountShippingPostalCodeRange>(); 314 var o = new core.List<api.AccountShippingPostalCodeRange>();
315 o.add(buildAccountShippingPostalCodeRange()); 315 o.add(buildAccountShippingPostalCodeRange());
316 o.add(buildAccountShippingPostalCodeRange()); 316 o.add(buildAccountShippingPostalCodeRange());
317 return o; 317 return o;
318 } 318 }
319 319
320 checkUnnamed520(core.List<api.AccountShippingPostalCodeRange> o) { 320 checkUnnamed259(core.List<api.AccountShippingPostalCodeRange> o) {
321 unittest.expect(o, unittest.hasLength(2)); 321 unittest.expect(o, unittest.hasLength(2));
322 checkAccountShippingPostalCodeRange(o[0]); 322 checkAccountShippingPostalCodeRange(o[0]);
323 checkAccountShippingPostalCodeRange(o[1]); 323 checkAccountShippingPostalCodeRange(o[1]);
324 } 324 }
325 325
326 buildUnnamed521() { 326 buildUnnamed260() {
327 var o = new core.List<core.String>(); 327 var o = new core.List<core.String>();
328 o.add("foo"); 328 o.add("foo");
329 o.add("foo"); 329 o.add("foo");
330 return o; 330 return o;
331 } 331 }
332 332
333 checkUnnamed521(core.List<core.String> o) { 333 checkUnnamed260(core.List<core.String> o) {
334 unittest.expect(o, unittest.hasLength(2)); 334 unittest.expect(o, unittest.hasLength(2));
335 unittest.expect(o[0], unittest.equals('foo')); 335 unittest.expect(o[0], unittest.equals('foo'));
336 unittest.expect(o[1], unittest.equals('foo')); 336 unittest.expect(o[1], unittest.equals('foo'));
337 } 337 }
338 338
339 core.int buildCounterAccountShippingLocationGroup = 0; 339 core.int buildCounterAccountShippingLocationGroup = 0;
340 buildAccountShippingLocationGroup() { 340 buildAccountShippingLocationGroup() {
341 var o = new api.AccountShippingLocationGroup(); 341 var o = new api.AccountShippingLocationGroup();
342 buildCounterAccountShippingLocationGroup++; 342 buildCounterAccountShippingLocationGroup++;
343 if (buildCounterAccountShippingLocationGroup < 3) { 343 if (buildCounterAccountShippingLocationGroup < 3) {
344 o.country = "foo"; 344 o.country = "foo";
345 o.locationIds = buildUnnamed519(); 345 o.locationIds = buildUnnamed258();
346 o.name = "foo"; 346 o.name = "foo";
347 o.postalCodeRanges = buildUnnamed520(); 347 o.postalCodeRanges = buildUnnamed259();
348 o.postalCodes = buildUnnamed521(); 348 o.postalCodes = buildUnnamed260();
349 } 349 }
350 buildCounterAccountShippingLocationGroup--; 350 buildCounterAccountShippingLocationGroup--;
351 return o; 351 return o;
352 } 352 }
353 353
354 checkAccountShippingLocationGroup(api.AccountShippingLocationGroup o) { 354 checkAccountShippingLocationGroup(api.AccountShippingLocationGroup o) {
355 buildCounterAccountShippingLocationGroup++; 355 buildCounterAccountShippingLocationGroup++;
356 if (buildCounterAccountShippingLocationGroup < 3) { 356 if (buildCounterAccountShippingLocationGroup < 3) {
357 unittest.expect(o.country, unittest.equals('foo')); 357 unittest.expect(o.country, unittest.equals('foo'));
358 checkUnnamed519(o.locationIds); 358 checkUnnamed258(o.locationIds);
359 unittest.expect(o.name, unittest.equals('foo')); 359 unittest.expect(o.name, unittest.equals('foo'));
360 checkUnnamed520(o.postalCodeRanges); 360 checkUnnamed259(o.postalCodeRanges);
361 checkUnnamed521(o.postalCodes); 361 checkUnnamed260(o.postalCodes);
362 } 362 }
363 buildCounterAccountShippingLocationGroup--; 363 buildCounterAccountShippingLocationGroup--;
364 } 364 }
365 365
366 core.int buildCounterAccountShippingPostalCodeRange = 0; 366 core.int buildCounterAccountShippingPostalCodeRange = 0;
367 buildAccountShippingPostalCodeRange() { 367 buildAccountShippingPostalCodeRange() {
368 var o = new api.AccountShippingPostalCodeRange(); 368 var o = new api.AccountShippingPostalCodeRange();
369 buildCounterAccountShippingPostalCodeRange++; 369 buildCounterAccountShippingPostalCodeRange++;
370 if (buildCounterAccountShippingPostalCodeRange < 3) { 370 if (buildCounterAccountShippingPostalCodeRange < 3) {
371 o.end = "foo"; 371 o.end = "foo";
372 o.start = "foo"; 372 o.start = "foo";
373 } 373 }
374 buildCounterAccountShippingPostalCodeRange--; 374 buildCounterAccountShippingPostalCodeRange--;
375 return o; 375 return o;
376 } 376 }
377 377
378 checkAccountShippingPostalCodeRange(api.AccountShippingPostalCodeRange o) { 378 checkAccountShippingPostalCodeRange(api.AccountShippingPostalCodeRange o) {
379 buildCounterAccountShippingPostalCodeRange++; 379 buildCounterAccountShippingPostalCodeRange++;
380 if (buildCounterAccountShippingPostalCodeRange < 3) { 380 if (buildCounterAccountShippingPostalCodeRange < 3) {
381 unittest.expect(o.end, unittest.equals('foo')); 381 unittest.expect(o.end, unittest.equals('foo'));
382 unittest.expect(o.start, unittest.equals('foo')); 382 unittest.expect(o.start, unittest.equals('foo'));
383 } 383 }
384 buildCounterAccountShippingPostalCodeRange--; 384 buildCounterAccountShippingPostalCodeRange--;
385 } 385 }
386 386
387 buildUnnamed522() { 387 buildUnnamed261() {
388 var o = new core.List<api.AccountShippingRateTableCell>(); 388 var o = new core.List<api.AccountShippingRateTableCell>();
389 o.add(buildAccountShippingRateTableCell()); 389 o.add(buildAccountShippingRateTableCell());
390 o.add(buildAccountShippingRateTableCell()); 390 o.add(buildAccountShippingRateTableCell());
391 return o; 391 return o;
392 } 392 }
393 393
394 checkUnnamed522(core.List<api.AccountShippingRateTableCell> o) { 394 checkUnnamed261(core.List<api.AccountShippingRateTableCell> o) {
395 unittest.expect(o, unittest.hasLength(2)); 395 unittest.expect(o, unittest.hasLength(2));
396 checkAccountShippingRateTableCell(o[0]); 396 checkAccountShippingRateTableCell(o[0]);
397 checkAccountShippingRateTableCell(o[1]); 397 checkAccountShippingRateTableCell(o[1]);
398 } 398 }
399 399
400 core.int buildCounterAccountShippingRateTable = 0; 400 core.int buildCounterAccountShippingRateTable = 0;
401 buildAccountShippingRateTable() { 401 buildAccountShippingRateTable() {
402 var o = new api.AccountShippingRateTable(); 402 var o = new api.AccountShippingRateTable();
403 buildCounterAccountShippingRateTable++; 403 buildCounterAccountShippingRateTable++;
404 if (buildCounterAccountShippingRateTable < 3) { 404 if (buildCounterAccountShippingRateTable < 3) {
405 o.content = buildUnnamed522(); 405 o.content = buildUnnamed261();
406 o.name = "foo"; 406 o.name = "foo";
407 o.saleCountry = "foo"; 407 o.saleCountry = "foo";
408 } 408 }
409 buildCounterAccountShippingRateTable--; 409 buildCounterAccountShippingRateTable--;
410 return o; 410 return o;
411 } 411 }
412 412
413 checkAccountShippingRateTable(api.AccountShippingRateTable o) { 413 checkAccountShippingRateTable(api.AccountShippingRateTable o) {
414 buildCounterAccountShippingRateTable++; 414 buildCounterAccountShippingRateTable++;
415 if (buildCounterAccountShippingRateTable < 3) { 415 if (buildCounterAccountShippingRateTable < 3) {
416 checkUnnamed522(o.content); 416 checkUnnamed261(o.content);
417 unittest.expect(o.name, unittest.equals('foo')); 417 unittest.expect(o.name, unittest.equals('foo'));
418 unittest.expect(o.saleCountry, unittest.equals('foo')); 418 unittest.expect(o.saleCountry, unittest.equals('foo'));
419 } 419 }
420 buildCounterAccountShippingRateTable--; 420 buildCounterAccountShippingRateTable--;
421 } 421 }
422 422
423 core.int buildCounterAccountShippingRateTableCell = 0; 423 core.int buildCounterAccountShippingRateTableCell = 0;
424 buildAccountShippingRateTableCell() { 424 buildAccountShippingRateTableCell() {
425 var o = new api.AccountShippingRateTableCell(); 425 var o = new api.AccountShippingRateTableCell();
426 buildCounterAccountShippingRateTableCell++; 426 buildCounterAccountShippingRateTableCell++;
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
492 if (buildCounterAccountShippingShippingServiceCalculationMethod < 3) { 492 if (buildCounterAccountShippingShippingServiceCalculationMethod < 3) {
493 unittest.expect(o.carrierRate, unittest.equals('foo')); 493 unittest.expect(o.carrierRate, unittest.equals('foo'));
494 unittest.expect(o.excluded, unittest.isTrue); 494 unittest.expect(o.excluded, unittest.isTrue);
495 checkPrice(o.flatRate); 495 checkPrice(o.flatRate);
496 unittest.expect(o.percentageRate, unittest.equals('foo')); 496 unittest.expect(o.percentageRate, unittest.equals('foo'));
497 unittest.expect(o.rateTable, unittest.equals('foo')); 497 unittest.expect(o.rateTable, unittest.equals('foo'));
498 } 498 }
499 buildCounterAccountShippingShippingServiceCalculationMethod--; 499 buildCounterAccountShippingShippingServiceCalculationMethod--;
500 } 500 }
501 501
502 buildUnnamed523() { 502 buildUnnamed262() {
503 var o = new core.List<api.AccountShippingShippingServiceCostRule>(); 503 var o = new core.List<api.AccountShippingShippingServiceCostRule>();
504 o.add(buildAccountShippingShippingServiceCostRule()); 504 o.add(buildAccountShippingShippingServiceCostRule());
505 o.add(buildAccountShippingShippingServiceCostRule()); 505 o.add(buildAccountShippingShippingServiceCostRule());
506 return o; 506 return o;
507 } 507 }
508 508
509 checkUnnamed523(core.List<api.AccountShippingShippingServiceCostRule> o) { 509 checkUnnamed262(core.List<api.AccountShippingShippingServiceCostRule> o) {
510 unittest.expect(o, unittest.hasLength(2)); 510 unittest.expect(o, unittest.hasLength(2));
511 checkAccountShippingShippingServiceCostRule(o[0]); 511 checkAccountShippingShippingServiceCostRule(o[0]);
512 checkAccountShippingShippingServiceCostRule(o[1]); 512 checkAccountShippingShippingServiceCostRule(o[1]);
513 } 513 }
514 514
515 core.int buildCounterAccountShippingShippingServiceCostRule = 0; 515 core.int buildCounterAccountShippingShippingServiceCostRule = 0;
516 buildAccountShippingShippingServiceCostRule() { 516 buildAccountShippingShippingServiceCostRule() {
517 var o = new api.AccountShippingShippingServiceCostRule(); 517 var o = new api.AccountShippingShippingServiceCostRule();
518 buildCounterAccountShippingShippingServiceCostRule++; 518 buildCounterAccountShippingShippingServiceCostRule++;
519 if (buildCounterAccountShippingShippingServiceCostRule < 3) { 519 if (buildCounterAccountShippingShippingServiceCostRule < 3) {
520 o.calculationMethod = buildAccountShippingShippingServiceCalculationMethod() ; 520 o.calculationMethod = buildAccountShippingShippingServiceCalculationMethod() ;
521 o.children = buildUnnamed523(); 521 o.children = buildUnnamed262();
522 o.condition = buildAccountShippingCondition(); 522 o.condition = buildAccountShippingCondition();
523 } 523 }
524 buildCounterAccountShippingShippingServiceCostRule--; 524 buildCounterAccountShippingShippingServiceCostRule--;
525 return o; 525 return o;
526 } 526 }
527 527
528 checkAccountShippingShippingServiceCostRule(api.AccountShippingShippingServiceCo stRule o) { 528 checkAccountShippingShippingServiceCostRule(api.AccountShippingShippingServiceCo stRule o) {
529 buildCounterAccountShippingShippingServiceCostRule++; 529 buildCounterAccountShippingShippingServiceCostRule++;
530 if (buildCounterAccountShippingShippingServiceCostRule < 3) { 530 if (buildCounterAccountShippingShippingServiceCostRule < 3) {
531 checkAccountShippingShippingServiceCalculationMethod(o.calculationMethod); 531 checkAccountShippingShippingServiceCalculationMethod(o.calculationMethod);
532 checkUnnamed523(o.children); 532 checkUnnamed262(o.children);
533 checkAccountShippingCondition(o.condition); 533 checkAccountShippingCondition(o.condition);
534 } 534 }
535 buildCounterAccountShippingShippingServiceCostRule--; 535 buildCounterAccountShippingShippingServiceCostRule--;
536 } 536 }
537 537
538 buildUnnamed524() { 538 buildUnnamed263() {
539 var o = new core.List<api.AccountStatusDataQualityIssue>(); 539 var o = new core.List<api.AccountStatusDataQualityIssue>();
540 o.add(buildAccountStatusDataQualityIssue()); 540 o.add(buildAccountStatusDataQualityIssue());
541 o.add(buildAccountStatusDataQualityIssue()); 541 o.add(buildAccountStatusDataQualityIssue());
542 return o; 542 return o;
543 } 543 }
544 544
545 checkUnnamed524(core.List<api.AccountStatusDataQualityIssue> o) { 545 checkUnnamed263(core.List<api.AccountStatusDataQualityIssue> o) {
546 unittest.expect(o, unittest.hasLength(2)); 546 unittest.expect(o, unittest.hasLength(2));
547 checkAccountStatusDataQualityIssue(o[0]); 547 checkAccountStatusDataQualityIssue(o[0]);
548 checkAccountStatusDataQualityIssue(o[1]); 548 checkAccountStatusDataQualityIssue(o[1]);
549 } 549 }
550 550
551 core.int buildCounterAccountStatus = 0; 551 core.int buildCounterAccountStatus = 0;
552 buildAccountStatus() { 552 buildAccountStatus() {
553 var o = new api.AccountStatus(); 553 var o = new api.AccountStatus();
554 buildCounterAccountStatus++; 554 buildCounterAccountStatus++;
555 if (buildCounterAccountStatus < 3) { 555 if (buildCounterAccountStatus < 3) {
556 o.accountId = "foo"; 556 o.accountId = "foo";
557 o.dataQualityIssues = buildUnnamed524(); 557 o.dataQualityIssues = buildUnnamed263();
558 o.kind = "foo"; 558 o.kind = "foo";
559 } 559 }
560 buildCounterAccountStatus--; 560 buildCounterAccountStatus--;
561 return o; 561 return o;
562 } 562 }
563 563
564 checkAccountStatus(api.AccountStatus o) { 564 checkAccountStatus(api.AccountStatus o) {
565 buildCounterAccountStatus++; 565 buildCounterAccountStatus++;
566 if (buildCounterAccountStatus < 3) { 566 if (buildCounterAccountStatus < 3) {
567 unittest.expect(o.accountId, unittest.equals('foo')); 567 unittest.expect(o.accountId, unittest.equals('foo'));
568 checkUnnamed524(o.dataQualityIssues); 568 checkUnnamed263(o.dataQualityIssues);
569 unittest.expect(o.kind, unittest.equals('foo')); 569 unittest.expect(o.kind, unittest.equals('foo'));
570 } 570 }
571 buildCounterAccountStatus--; 571 buildCounterAccountStatus--;
572 } 572 }
573 573
574 buildUnnamed525() { 574 buildUnnamed264() {
575 var o = new core.List<api.AccountStatusExampleItem>(); 575 var o = new core.List<api.AccountStatusExampleItem>();
576 o.add(buildAccountStatusExampleItem()); 576 o.add(buildAccountStatusExampleItem());
577 o.add(buildAccountStatusExampleItem()); 577 o.add(buildAccountStatusExampleItem());
578 return o; 578 return o;
579 } 579 }
580 580
581 checkUnnamed525(core.List<api.AccountStatusExampleItem> o) { 581 checkUnnamed264(core.List<api.AccountStatusExampleItem> o) {
582 unittest.expect(o, unittest.hasLength(2)); 582 unittest.expect(o, unittest.hasLength(2));
583 checkAccountStatusExampleItem(o[0]); 583 checkAccountStatusExampleItem(o[0]);
584 checkAccountStatusExampleItem(o[1]); 584 checkAccountStatusExampleItem(o[1]);
585 } 585 }
586 586
587 core.int buildCounterAccountStatusDataQualityIssue = 0; 587 core.int buildCounterAccountStatusDataQualityIssue = 0;
588 buildAccountStatusDataQualityIssue() { 588 buildAccountStatusDataQualityIssue() {
589 var o = new api.AccountStatusDataQualityIssue(); 589 var o = new api.AccountStatusDataQualityIssue();
590 buildCounterAccountStatusDataQualityIssue++; 590 buildCounterAccountStatusDataQualityIssue++;
591 if (buildCounterAccountStatusDataQualityIssue < 3) { 591 if (buildCounterAccountStatusDataQualityIssue < 3) {
592 o.country = "foo"; 592 o.country = "foo";
593 o.displayedValue = "foo"; 593 o.displayedValue = "foo";
594 o.exampleItems = buildUnnamed525(); 594 o.exampleItems = buildUnnamed264();
595 o.id = "foo"; 595 o.id = "foo";
596 o.lastChecked = "foo"; 596 o.lastChecked = "foo";
597 o.numItems = 42; 597 o.numItems = 42;
598 o.severity = "foo"; 598 o.severity = "foo";
599 o.submittedValue = "foo"; 599 o.submittedValue = "foo";
600 } 600 }
601 buildCounterAccountStatusDataQualityIssue--; 601 buildCounterAccountStatusDataQualityIssue--;
602 return o; 602 return o;
603 } 603 }
604 604
605 checkAccountStatusDataQualityIssue(api.AccountStatusDataQualityIssue o) { 605 checkAccountStatusDataQualityIssue(api.AccountStatusDataQualityIssue o) {
606 buildCounterAccountStatusDataQualityIssue++; 606 buildCounterAccountStatusDataQualityIssue++;
607 if (buildCounterAccountStatusDataQualityIssue < 3) { 607 if (buildCounterAccountStatusDataQualityIssue < 3) {
608 unittest.expect(o.country, unittest.equals('foo')); 608 unittest.expect(o.country, unittest.equals('foo'));
609 unittest.expect(o.displayedValue, unittest.equals('foo')); 609 unittest.expect(o.displayedValue, unittest.equals('foo'));
610 checkUnnamed525(o.exampleItems); 610 checkUnnamed264(o.exampleItems);
611 unittest.expect(o.id, unittest.equals('foo')); 611 unittest.expect(o.id, unittest.equals('foo'));
612 unittest.expect(o.lastChecked, unittest.equals('foo')); 612 unittest.expect(o.lastChecked, unittest.equals('foo'));
613 unittest.expect(o.numItems, unittest.equals(42)); 613 unittest.expect(o.numItems, unittest.equals(42));
614 unittest.expect(o.severity, unittest.equals('foo')); 614 unittest.expect(o.severity, unittest.equals('foo'));
615 unittest.expect(o.submittedValue, unittest.equals('foo')); 615 unittest.expect(o.submittedValue, unittest.equals('foo'));
616 } 616 }
617 buildCounterAccountStatusDataQualityIssue--; 617 buildCounterAccountStatusDataQualityIssue--;
618 } 618 }
619 619
620 core.int buildCounterAccountStatusExampleItem = 0; 620 core.int buildCounterAccountStatusExampleItem = 0;
(...skipping 16 matching lines...) Expand all
637 if (buildCounterAccountStatusExampleItem < 3) { 637 if (buildCounterAccountStatusExampleItem < 3) {
638 unittest.expect(o.itemId, unittest.equals('foo')); 638 unittest.expect(o.itemId, unittest.equals('foo'));
639 unittest.expect(o.link, unittest.equals('foo')); 639 unittest.expect(o.link, unittest.equals('foo'));
640 unittest.expect(o.submittedValue, unittest.equals('foo')); 640 unittest.expect(o.submittedValue, unittest.equals('foo'));
641 unittest.expect(o.title, unittest.equals('foo')); 641 unittest.expect(o.title, unittest.equals('foo'));
642 unittest.expect(o.valueOnLandingPage, unittest.equals('foo')); 642 unittest.expect(o.valueOnLandingPage, unittest.equals('foo'));
643 } 643 }
644 buildCounterAccountStatusExampleItem--; 644 buildCounterAccountStatusExampleItem--;
645 } 645 }
646 646
647 buildUnnamed526() { 647 buildUnnamed265() {
648 var o = new core.List<api.AccountTaxTaxRule>(); 648 var o = new core.List<api.AccountTaxTaxRule>();
649 o.add(buildAccountTaxTaxRule()); 649 o.add(buildAccountTaxTaxRule());
650 o.add(buildAccountTaxTaxRule()); 650 o.add(buildAccountTaxTaxRule());
651 return o; 651 return o;
652 } 652 }
653 653
654 checkUnnamed526(core.List<api.AccountTaxTaxRule> o) { 654 checkUnnamed265(core.List<api.AccountTaxTaxRule> o) {
655 unittest.expect(o, unittest.hasLength(2)); 655 unittest.expect(o, unittest.hasLength(2));
656 checkAccountTaxTaxRule(o[0]); 656 checkAccountTaxTaxRule(o[0]);
657 checkAccountTaxTaxRule(o[1]); 657 checkAccountTaxTaxRule(o[1]);
658 } 658 }
659 659
660 core.int buildCounterAccountTax = 0; 660 core.int buildCounterAccountTax = 0;
661 buildAccountTax() { 661 buildAccountTax() {
662 var o = new api.AccountTax(); 662 var o = new api.AccountTax();
663 buildCounterAccountTax++; 663 buildCounterAccountTax++;
664 if (buildCounterAccountTax < 3) { 664 if (buildCounterAccountTax < 3) {
665 o.accountId = "foo"; 665 o.accountId = "foo";
666 o.kind = "foo"; 666 o.kind = "foo";
667 o.rules = buildUnnamed526(); 667 o.rules = buildUnnamed265();
668 } 668 }
669 buildCounterAccountTax--; 669 buildCounterAccountTax--;
670 return o; 670 return o;
671 } 671 }
672 672
673 checkAccountTax(api.AccountTax o) { 673 checkAccountTax(api.AccountTax o) {
674 buildCounterAccountTax++; 674 buildCounterAccountTax++;
675 if (buildCounterAccountTax < 3) { 675 if (buildCounterAccountTax < 3) {
676 unittest.expect(o.accountId, unittest.equals('foo')); 676 unittest.expect(o.accountId, unittest.equals('foo'));
677 unittest.expect(o.kind, unittest.equals('foo')); 677 unittest.expect(o.kind, unittest.equals('foo'));
678 checkUnnamed526(o.rules); 678 checkUnnamed265(o.rules);
679 } 679 }
680 buildCounterAccountTax--; 680 buildCounterAccountTax--;
681 } 681 }
682 682
683 core.int buildCounterAccountTaxTaxRule = 0; 683 core.int buildCounterAccountTaxTaxRule = 0;
684 buildAccountTaxTaxRule() { 684 buildAccountTaxTaxRule() {
685 var o = new api.AccountTaxTaxRule(); 685 var o = new api.AccountTaxTaxRule();
686 buildCounterAccountTaxTaxRule++; 686 buildCounterAccountTaxTaxRule++;
687 if (buildCounterAccountTaxTaxRule < 3) { 687 if (buildCounterAccountTaxTaxRule < 3) {
688 o.country = "foo"; 688 o.country = "foo";
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
721 721
722 checkAccountUser(api.AccountUser o) { 722 checkAccountUser(api.AccountUser o) {
723 buildCounterAccountUser++; 723 buildCounterAccountUser++;
724 if (buildCounterAccountUser < 3) { 724 if (buildCounterAccountUser < 3) {
725 unittest.expect(o.admin, unittest.isTrue); 725 unittest.expect(o.admin, unittest.isTrue);
726 unittest.expect(o.emailAddress, unittest.equals('foo')); 726 unittest.expect(o.emailAddress, unittest.equals('foo'));
727 } 727 }
728 buildCounterAccountUser--; 728 buildCounterAccountUser--;
729 } 729 }
730 730
731 buildUnnamed527() { 731 buildUnnamed266() {
732 var o = new core.List<api.AccountIdentifier>(); 732 var o = new core.List<api.AccountIdentifier>();
733 o.add(buildAccountIdentifier()); 733 o.add(buildAccountIdentifier());
734 o.add(buildAccountIdentifier()); 734 o.add(buildAccountIdentifier());
735 return o; 735 return o;
736 } 736 }
737 737
738 checkUnnamed527(core.List<api.AccountIdentifier> o) { 738 checkUnnamed266(core.List<api.AccountIdentifier> o) {
739 unittest.expect(o, unittest.hasLength(2)); 739 unittest.expect(o, unittest.hasLength(2));
740 checkAccountIdentifier(o[0]); 740 checkAccountIdentifier(o[0]);
741 checkAccountIdentifier(o[1]); 741 checkAccountIdentifier(o[1]);
742 } 742 }
743 743
744 core.int buildCounterAccountsAuthInfoResponse = 0; 744 core.int buildCounterAccountsAuthInfoResponse = 0;
745 buildAccountsAuthInfoResponse() { 745 buildAccountsAuthInfoResponse() {
746 var o = new api.AccountsAuthInfoResponse(); 746 var o = new api.AccountsAuthInfoResponse();
747 buildCounterAccountsAuthInfoResponse++; 747 buildCounterAccountsAuthInfoResponse++;
748 if (buildCounterAccountsAuthInfoResponse < 3) { 748 if (buildCounterAccountsAuthInfoResponse < 3) {
749 o.accountIdentifiers = buildUnnamed527(); 749 o.accountIdentifiers = buildUnnamed266();
750 o.kind = "foo"; 750 o.kind = "foo";
751 } 751 }
752 buildCounterAccountsAuthInfoResponse--; 752 buildCounterAccountsAuthInfoResponse--;
753 return o; 753 return o;
754 } 754 }
755 755
756 checkAccountsAuthInfoResponse(api.AccountsAuthInfoResponse o) { 756 checkAccountsAuthInfoResponse(api.AccountsAuthInfoResponse o) {
757 buildCounterAccountsAuthInfoResponse++; 757 buildCounterAccountsAuthInfoResponse++;
758 if (buildCounterAccountsAuthInfoResponse < 3) { 758 if (buildCounterAccountsAuthInfoResponse < 3) {
759 checkUnnamed527(o.accountIdentifiers); 759 checkUnnamed266(o.accountIdentifiers);
760 unittest.expect(o.kind, unittest.equals('foo')); 760 unittest.expect(o.kind, unittest.equals('foo'));
761 } 761 }
762 buildCounterAccountsAuthInfoResponse--; 762 buildCounterAccountsAuthInfoResponse--;
763 } 763 }
764 764
765 buildUnnamed528() { 765 buildUnnamed267() {
766 var o = new core.List<api.AccountsCustomBatchRequestEntry>(); 766 var o = new core.List<api.AccountsCustomBatchRequestEntry>();
767 o.add(buildAccountsCustomBatchRequestEntry()); 767 o.add(buildAccountsCustomBatchRequestEntry());
768 o.add(buildAccountsCustomBatchRequestEntry()); 768 o.add(buildAccountsCustomBatchRequestEntry());
769 return o; 769 return o;
770 } 770 }
771 771
772 checkUnnamed528(core.List<api.AccountsCustomBatchRequestEntry> o) { 772 checkUnnamed267(core.List<api.AccountsCustomBatchRequestEntry> o) {
773 unittest.expect(o, unittest.hasLength(2)); 773 unittest.expect(o, unittest.hasLength(2));
774 checkAccountsCustomBatchRequestEntry(o[0]); 774 checkAccountsCustomBatchRequestEntry(o[0]);
775 checkAccountsCustomBatchRequestEntry(o[1]); 775 checkAccountsCustomBatchRequestEntry(o[1]);
776 } 776 }
777 777
778 core.int buildCounterAccountsCustomBatchRequest = 0; 778 core.int buildCounterAccountsCustomBatchRequest = 0;
779 buildAccountsCustomBatchRequest() { 779 buildAccountsCustomBatchRequest() {
780 var o = new api.AccountsCustomBatchRequest(); 780 var o = new api.AccountsCustomBatchRequest();
781 buildCounterAccountsCustomBatchRequest++; 781 buildCounterAccountsCustomBatchRequest++;
782 if (buildCounterAccountsCustomBatchRequest < 3) { 782 if (buildCounterAccountsCustomBatchRequest < 3) {
783 o.entries = buildUnnamed528(); 783 o.entries = buildUnnamed267();
784 } 784 }
785 buildCounterAccountsCustomBatchRequest--; 785 buildCounterAccountsCustomBatchRequest--;
786 return o; 786 return o;
787 } 787 }
788 788
789 checkAccountsCustomBatchRequest(api.AccountsCustomBatchRequest o) { 789 checkAccountsCustomBatchRequest(api.AccountsCustomBatchRequest o) {
790 buildCounterAccountsCustomBatchRequest++; 790 buildCounterAccountsCustomBatchRequest++;
791 if (buildCounterAccountsCustomBatchRequest < 3) { 791 if (buildCounterAccountsCustomBatchRequest < 3) {
792 checkUnnamed528(o.entries); 792 checkUnnamed267(o.entries);
793 } 793 }
794 buildCounterAccountsCustomBatchRequest--; 794 buildCounterAccountsCustomBatchRequest--;
795 } 795 }
796 796
797 core.int buildCounterAccountsCustomBatchRequestEntry = 0; 797 core.int buildCounterAccountsCustomBatchRequestEntry = 0;
798 buildAccountsCustomBatchRequestEntry() { 798 buildAccountsCustomBatchRequestEntry() {
799 var o = new api.AccountsCustomBatchRequestEntry(); 799 var o = new api.AccountsCustomBatchRequestEntry();
800 buildCounterAccountsCustomBatchRequestEntry++; 800 buildCounterAccountsCustomBatchRequestEntry++;
801 if (buildCounterAccountsCustomBatchRequestEntry < 3) { 801 if (buildCounterAccountsCustomBatchRequestEntry < 3) {
802 o.account = buildAccount(); 802 o.account = buildAccount();
(...skipping 11 matching lines...) Expand all
814 if (buildCounterAccountsCustomBatchRequestEntry < 3) { 814 if (buildCounterAccountsCustomBatchRequestEntry < 3) {
815 checkAccount(o.account); 815 checkAccount(o.account);
816 unittest.expect(o.accountId, unittest.equals('foo')); 816 unittest.expect(o.accountId, unittest.equals('foo'));
817 unittest.expect(o.batchId, unittest.equals(42)); 817 unittest.expect(o.batchId, unittest.equals(42));
818 unittest.expect(o.merchantId, unittest.equals('foo')); 818 unittest.expect(o.merchantId, unittest.equals('foo'));
819 unittest.expect(o.method, unittest.equals('foo')); 819 unittest.expect(o.method, unittest.equals('foo'));
820 } 820 }
821 buildCounterAccountsCustomBatchRequestEntry--; 821 buildCounterAccountsCustomBatchRequestEntry--;
822 } 822 }
823 823
824 buildUnnamed529() { 824 buildUnnamed268() {
825 var o = new core.List<api.AccountsCustomBatchResponseEntry>(); 825 var o = new core.List<api.AccountsCustomBatchResponseEntry>();
826 o.add(buildAccountsCustomBatchResponseEntry()); 826 o.add(buildAccountsCustomBatchResponseEntry());
827 o.add(buildAccountsCustomBatchResponseEntry()); 827 o.add(buildAccountsCustomBatchResponseEntry());
828 return o; 828 return o;
829 } 829 }
830 830
831 checkUnnamed529(core.List<api.AccountsCustomBatchResponseEntry> o) { 831 checkUnnamed268(core.List<api.AccountsCustomBatchResponseEntry> o) {
832 unittest.expect(o, unittest.hasLength(2)); 832 unittest.expect(o, unittest.hasLength(2));
833 checkAccountsCustomBatchResponseEntry(o[0]); 833 checkAccountsCustomBatchResponseEntry(o[0]);
834 checkAccountsCustomBatchResponseEntry(o[1]); 834 checkAccountsCustomBatchResponseEntry(o[1]);
835 } 835 }
836 836
837 core.int buildCounterAccountsCustomBatchResponse = 0; 837 core.int buildCounterAccountsCustomBatchResponse = 0;
838 buildAccountsCustomBatchResponse() { 838 buildAccountsCustomBatchResponse() {
839 var o = new api.AccountsCustomBatchResponse(); 839 var o = new api.AccountsCustomBatchResponse();
840 buildCounterAccountsCustomBatchResponse++; 840 buildCounterAccountsCustomBatchResponse++;
841 if (buildCounterAccountsCustomBatchResponse < 3) { 841 if (buildCounterAccountsCustomBatchResponse < 3) {
842 o.entries = buildUnnamed529(); 842 o.entries = buildUnnamed268();
843 o.kind = "foo"; 843 o.kind = "foo";
844 } 844 }
845 buildCounterAccountsCustomBatchResponse--; 845 buildCounterAccountsCustomBatchResponse--;
846 return o; 846 return o;
847 } 847 }
848 848
849 checkAccountsCustomBatchResponse(api.AccountsCustomBatchResponse o) { 849 checkAccountsCustomBatchResponse(api.AccountsCustomBatchResponse o) {
850 buildCounterAccountsCustomBatchResponse++; 850 buildCounterAccountsCustomBatchResponse++;
851 if (buildCounterAccountsCustomBatchResponse < 3) { 851 if (buildCounterAccountsCustomBatchResponse < 3) {
852 checkUnnamed529(o.entries); 852 checkUnnamed268(o.entries);
853 unittest.expect(o.kind, unittest.equals('foo')); 853 unittest.expect(o.kind, unittest.equals('foo'));
854 } 854 }
855 buildCounterAccountsCustomBatchResponse--; 855 buildCounterAccountsCustomBatchResponse--;
856 } 856 }
857 857
858 core.int buildCounterAccountsCustomBatchResponseEntry = 0; 858 core.int buildCounterAccountsCustomBatchResponseEntry = 0;
859 buildAccountsCustomBatchResponseEntry() { 859 buildAccountsCustomBatchResponseEntry() {
860 var o = new api.AccountsCustomBatchResponseEntry(); 860 var o = new api.AccountsCustomBatchResponseEntry();
861 buildCounterAccountsCustomBatchResponseEntry++; 861 buildCounterAccountsCustomBatchResponseEntry++;
862 if (buildCounterAccountsCustomBatchResponseEntry < 3) { 862 if (buildCounterAccountsCustomBatchResponseEntry < 3) {
(...skipping 10 matching lines...) Expand all
873 buildCounterAccountsCustomBatchResponseEntry++; 873 buildCounterAccountsCustomBatchResponseEntry++;
874 if (buildCounterAccountsCustomBatchResponseEntry < 3) { 874 if (buildCounterAccountsCustomBatchResponseEntry < 3) {
875 checkAccount(o.account); 875 checkAccount(o.account);
876 unittest.expect(o.batchId, unittest.equals(42)); 876 unittest.expect(o.batchId, unittest.equals(42));
877 checkErrors(o.errors); 877 checkErrors(o.errors);
878 unittest.expect(o.kind, unittest.equals('foo')); 878 unittest.expect(o.kind, unittest.equals('foo'));
879 } 879 }
880 buildCounterAccountsCustomBatchResponseEntry--; 880 buildCounterAccountsCustomBatchResponseEntry--;
881 } 881 }
882 882
883 buildUnnamed530() { 883 buildUnnamed269() {
884 var o = new core.List<api.Account>(); 884 var o = new core.List<api.Account>();
885 o.add(buildAccount()); 885 o.add(buildAccount());
886 o.add(buildAccount()); 886 o.add(buildAccount());
887 return o; 887 return o;
888 } 888 }
889 889
890 checkUnnamed530(core.List<api.Account> o) { 890 checkUnnamed269(core.List<api.Account> o) {
891 unittest.expect(o, unittest.hasLength(2)); 891 unittest.expect(o, unittest.hasLength(2));
892 checkAccount(o[0]); 892 checkAccount(o[0]);
893 checkAccount(o[1]); 893 checkAccount(o[1]);
894 } 894 }
895 895
896 core.int buildCounterAccountsListResponse = 0; 896 core.int buildCounterAccountsListResponse = 0;
897 buildAccountsListResponse() { 897 buildAccountsListResponse() {
898 var o = new api.AccountsListResponse(); 898 var o = new api.AccountsListResponse();
899 buildCounterAccountsListResponse++; 899 buildCounterAccountsListResponse++;
900 if (buildCounterAccountsListResponse < 3) { 900 if (buildCounterAccountsListResponse < 3) {
901 o.kind = "foo"; 901 o.kind = "foo";
902 o.nextPageToken = "foo"; 902 o.nextPageToken = "foo";
903 o.resources = buildUnnamed530(); 903 o.resources = buildUnnamed269();
904 } 904 }
905 buildCounterAccountsListResponse--; 905 buildCounterAccountsListResponse--;
906 return o; 906 return o;
907 } 907 }
908 908
909 checkAccountsListResponse(api.AccountsListResponse o) { 909 checkAccountsListResponse(api.AccountsListResponse o) {
910 buildCounterAccountsListResponse++; 910 buildCounterAccountsListResponse++;
911 if (buildCounterAccountsListResponse < 3) { 911 if (buildCounterAccountsListResponse < 3) {
912 unittest.expect(o.kind, unittest.equals('foo')); 912 unittest.expect(o.kind, unittest.equals('foo'));
913 unittest.expect(o.nextPageToken, unittest.equals('foo')); 913 unittest.expect(o.nextPageToken, unittest.equals('foo'));
914 checkUnnamed530(o.resources); 914 checkUnnamed269(o.resources);
915 } 915 }
916 buildCounterAccountsListResponse--; 916 buildCounterAccountsListResponse--;
917 } 917 }
918 918
919 buildUnnamed531() { 919 buildUnnamed270() {
920 var o = new core.List<api.AccountshippingCustomBatchRequestEntry>(); 920 var o = new core.List<api.AccountshippingCustomBatchRequestEntry>();
921 o.add(buildAccountshippingCustomBatchRequestEntry()); 921 o.add(buildAccountshippingCustomBatchRequestEntry());
922 o.add(buildAccountshippingCustomBatchRequestEntry()); 922 o.add(buildAccountshippingCustomBatchRequestEntry());
923 return o; 923 return o;
924 } 924 }
925 925
926 checkUnnamed531(core.List<api.AccountshippingCustomBatchRequestEntry> o) { 926 checkUnnamed270(core.List<api.AccountshippingCustomBatchRequestEntry> o) {
927 unittest.expect(o, unittest.hasLength(2)); 927 unittest.expect(o, unittest.hasLength(2));
928 checkAccountshippingCustomBatchRequestEntry(o[0]); 928 checkAccountshippingCustomBatchRequestEntry(o[0]);
929 checkAccountshippingCustomBatchRequestEntry(o[1]); 929 checkAccountshippingCustomBatchRequestEntry(o[1]);
930 } 930 }
931 931
932 core.int buildCounterAccountshippingCustomBatchRequest = 0; 932 core.int buildCounterAccountshippingCustomBatchRequest = 0;
933 buildAccountshippingCustomBatchRequest() { 933 buildAccountshippingCustomBatchRequest() {
934 var o = new api.AccountshippingCustomBatchRequest(); 934 var o = new api.AccountshippingCustomBatchRequest();
935 buildCounterAccountshippingCustomBatchRequest++; 935 buildCounterAccountshippingCustomBatchRequest++;
936 if (buildCounterAccountshippingCustomBatchRequest < 3) { 936 if (buildCounterAccountshippingCustomBatchRequest < 3) {
937 o.entries = buildUnnamed531(); 937 o.entries = buildUnnamed270();
938 } 938 }
939 buildCounterAccountshippingCustomBatchRequest--; 939 buildCounterAccountshippingCustomBatchRequest--;
940 return o; 940 return o;
941 } 941 }
942 942
943 checkAccountshippingCustomBatchRequest(api.AccountshippingCustomBatchRequest o) { 943 checkAccountshippingCustomBatchRequest(api.AccountshippingCustomBatchRequest o) {
944 buildCounterAccountshippingCustomBatchRequest++; 944 buildCounterAccountshippingCustomBatchRequest++;
945 if (buildCounterAccountshippingCustomBatchRequest < 3) { 945 if (buildCounterAccountshippingCustomBatchRequest < 3) {
946 checkUnnamed531(o.entries); 946 checkUnnamed270(o.entries);
947 } 947 }
948 buildCounterAccountshippingCustomBatchRequest--; 948 buildCounterAccountshippingCustomBatchRequest--;
949 } 949 }
950 950
951 core.int buildCounterAccountshippingCustomBatchRequestEntry = 0; 951 core.int buildCounterAccountshippingCustomBatchRequestEntry = 0;
952 buildAccountshippingCustomBatchRequestEntry() { 952 buildAccountshippingCustomBatchRequestEntry() {
953 var o = new api.AccountshippingCustomBatchRequestEntry(); 953 var o = new api.AccountshippingCustomBatchRequestEntry();
954 buildCounterAccountshippingCustomBatchRequestEntry++; 954 buildCounterAccountshippingCustomBatchRequestEntry++;
955 if (buildCounterAccountshippingCustomBatchRequestEntry < 3) { 955 if (buildCounterAccountshippingCustomBatchRequestEntry < 3) {
956 o.accountId = "foo"; 956 o.accountId = "foo";
(...skipping 11 matching lines...) Expand all
968 if (buildCounterAccountshippingCustomBatchRequestEntry < 3) { 968 if (buildCounterAccountshippingCustomBatchRequestEntry < 3) {
969 unittest.expect(o.accountId, unittest.equals('foo')); 969 unittest.expect(o.accountId, unittest.equals('foo'));
970 checkAccountShipping(o.accountShipping); 970 checkAccountShipping(o.accountShipping);
971 unittest.expect(o.batchId, unittest.equals(42)); 971 unittest.expect(o.batchId, unittest.equals(42));
972 unittest.expect(o.merchantId, unittest.equals('foo')); 972 unittest.expect(o.merchantId, unittest.equals('foo'));
973 unittest.expect(o.method, unittest.equals('foo')); 973 unittest.expect(o.method, unittest.equals('foo'));
974 } 974 }
975 buildCounterAccountshippingCustomBatchRequestEntry--; 975 buildCounterAccountshippingCustomBatchRequestEntry--;
976 } 976 }
977 977
978 buildUnnamed532() { 978 buildUnnamed271() {
979 var o = new core.List<api.AccountshippingCustomBatchResponseEntry>(); 979 var o = new core.List<api.AccountshippingCustomBatchResponseEntry>();
980 o.add(buildAccountshippingCustomBatchResponseEntry()); 980 o.add(buildAccountshippingCustomBatchResponseEntry());
981 o.add(buildAccountshippingCustomBatchResponseEntry()); 981 o.add(buildAccountshippingCustomBatchResponseEntry());
982 return o; 982 return o;
983 } 983 }
984 984
985 checkUnnamed532(core.List<api.AccountshippingCustomBatchResponseEntry> o) { 985 checkUnnamed271(core.List<api.AccountshippingCustomBatchResponseEntry> o) {
986 unittest.expect(o, unittest.hasLength(2)); 986 unittest.expect(o, unittest.hasLength(2));
987 checkAccountshippingCustomBatchResponseEntry(o[0]); 987 checkAccountshippingCustomBatchResponseEntry(o[0]);
988 checkAccountshippingCustomBatchResponseEntry(o[1]); 988 checkAccountshippingCustomBatchResponseEntry(o[1]);
989 } 989 }
990 990
991 core.int buildCounterAccountshippingCustomBatchResponse = 0; 991 core.int buildCounterAccountshippingCustomBatchResponse = 0;
992 buildAccountshippingCustomBatchResponse() { 992 buildAccountshippingCustomBatchResponse() {
993 var o = new api.AccountshippingCustomBatchResponse(); 993 var o = new api.AccountshippingCustomBatchResponse();
994 buildCounterAccountshippingCustomBatchResponse++; 994 buildCounterAccountshippingCustomBatchResponse++;
995 if (buildCounterAccountshippingCustomBatchResponse < 3) { 995 if (buildCounterAccountshippingCustomBatchResponse < 3) {
996 o.entries = buildUnnamed532(); 996 o.entries = buildUnnamed271();
997 o.kind = "foo"; 997 o.kind = "foo";
998 } 998 }
999 buildCounterAccountshippingCustomBatchResponse--; 999 buildCounterAccountshippingCustomBatchResponse--;
1000 return o; 1000 return o;
1001 } 1001 }
1002 1002
1003 checkAccountshippingCustomBatchResponse(api.AccountshippingCustomBatchResponse o ) { 1003 checkAccountshippingCustomBatchResponse(api.AccountshippingCustomBatchResponse o ) {
1004 buildCounterAccountshippingCustomBatchResponse++; 1004 buildCounterAccountshippingCustomBatchResponse++;
1005 if (buildCounterAccountshippingCustomBatchResponse < 3) { 1005 if (buildCounterAccountshippingCustomBatchResponse < 3) {
1006 checkUnnamed532(o.entries); 1006 checkUnnamed271(o.entries);
1007 unittest.expect(o.kind, unittest.equals('foo')); 1007 unittest.expect(o.kind, unittest.equals('foo'));
1008 } 1008 }
1009 buildCounterAccountshippingCustomBatchResponse--; 1009 buildCounterAccountshippingCustomBatchResponse--;
1010 } 1010 }
1011 1011
1012 core.int buildCounterAccountshippingCustomBatchResponseEntry = 0; 1012 core.int buildCounterAccountshippingCustomBatchResponseEntry = 0;
1013 buildAccountshippingCustomBatchResponseEntry() { 1013 buildAccountshippingCustomBatchResponseEntry() {
1014 var o = new api.AccountshippingCustomBatchResponseEntry(); 1014 var o = new api.AccountshippingCustomBatchResponseEntry();
1015 buildCounterAccountshippingCustomBatchResponseEntry++; 1015 buildCounterAccountshippingCustomBatchResponseEntry++;
1016 if (buildCounterAccountshippingCustomBatchResponseEntry < 3) { 1016 if (buildCounterAccountshippingCustomBatchResponseEntry < 3) {
(...skipping 10 matching lines...) Expand all
1027 buildCounterAccountshippingCustomBatchResponseEntry++; 1027 buildCounterAccountshippingCustomBatchResponseEntry++;
1028 if (buildCounterAccountshippingCustomBatchResponseEntry < 3) { 1028 if (buildCounterAccountshippingCustomBatchResponseEntry < 3) {
1029 checkAccountShipping(o.accountShipping); 1029 checkAccountShipping(o.accountShipping);
1030 unittest.expect(o.batchId, unittest.equals(42)); 1030 unittest.expect(o.batchId, unittest.equals(42));
1031 checkErrors(o.errors); 1031 checkErrors(o.errors);
1032 unittest.expect(o.kind, unittest.equals('foo')); 1032 unittest.expect(o.kind, unittest.equals('foo'));
1033 } 1033 }
1034 buildCounterAccountshippingCustomBatchResponseEntry--; 1034 buildCounterAccountshippingCustomBatchResponseEntry--;
1035 } 1035 }
1036 1036
1037 buildUnnamed533() { 1037 buildUnnamed272() {
1038 var o = new core.List<api.AccountShipping>(); 1038 var o = new core.List<api.AccountShipping>();
1039 o.add(buildAccountShipping()); 1039 o.add(buildAccountShipping());
1040 o.add(buildAccountShipping()); 1040 o.add(buildAccountShipping());
1041 return o; 1041 return o;
1042 } 1042 }
1043 1043
1044 checkUnnamed533(core.List<api.AccountShipping> o) { 1044 checkUnnamed272(core.List<api.AccountShipping> o) {
1045 unittest.expect(o, unittest.hasLength(2)); 1045 unittest.expect(o, unittest.hasLength(2));
1046 checkAccountShipping(o[0]); 1046 checkAccountShipping(o[0]);
1047 checkAccountShipping(o[1]); 1047 checkAccountShipping(o[1]);
1048 } 1048 }
1049 1049
1050 core.int buildCounterAccountshippingListResponse = 0; 1050 core.int buildCounterAccountshippingListResponse = 0;
1051 buildAccountshippingListResponse() { 1051 buildAccountshippingListResponse() {
1052 var o = new api.AccountshippingListResponse(); 1052 var o = new api.AccountshippingListResponse();
1053 buildCounterAccountshippingListResponse++; 1053 buildCounterAccountshippingListResponse++;
1054 if (buildCounterAccountshippingListResponse < 3) { 1054 if (buildCounterAccountshippingListResponse < 3) {
1055 o.kind = "foo"; 1055 o.kind = "foo";
1056 o.nextPageToken = "foo"; 1056 o.nextPageToken = "foo";
1057 o.resources = buildUnnamed533(); 1057 o.resources = buildUnnamed272();
1058 } 1058 }
1059 buildCounterAccountshippingListResponse--; 1059 buildCounterAccountshippingListResponse--;
1060 return o; 1060 return o;
1061 } 1061 }
1062 1062
1063 checkAccountshippingListResponse(api.AccountshippingListResponse o) { 1063 checkAccountshippingListResponse(api.AccountshippingListResponse o) {
1064 buildCounterAccountshippingListResponse++; 1064 buildCounterAccountshippingListResponse++;
1065 if (buildCounterAccountshippingListResponse < 3) { 1065 if (buildCounterAccountshippingListResponse < 3) {
1066 unittest.expect(o.kind, unittest.equals('foo')); 1066 unittest.expect(o.kind, unittest.equals('foo'));
1067 unittest.expect(o.nextPageToken, unittest.equals('foo')); 1067 unittest.expect(o.nextPageToken, unittest.equals('foo'));
1068 checkUnnamed533(o.resources); 1068 checkUnnamed272(o.resources);
1069 } 1069 }
1070 buildCounterAccountshippingListResponse--; 1070 buildCounterAccountshippingListResponse--;
1071 } 1071 }
1072 1072
1073 buildUnnamed534() { 1073 buildUnnamed273() {
1074 var o = new core.List<api.AccountstatusesCustomBatchRequestEntry>(); 1074 var o = new core.List<api.AccountstatusesCustomBatchRequestEntry>();
1075 o.add(buildAccountstatusesCustomBatchRequestEntry()); 1075 o.add(buildAccountstatusesCustomBatchRequestEntry());
1076 o.add(buildAccountstatusesCustomBatchRequestEntry()); 1076 o.add(buildAccountstatusesCustomBatchRequestEntry());
1077 return o; 1077 return o;
1078 } 1078 }
1079 1079
1080 checkUnnamed534(core.List<api.AccountstatusesCustomBatchRequestEntry> o) { 1080 checkUnnamed273(core.List<api.AccountstatusesCustomBatchRequestEntry> o) {
1081 unittest.expect(o, unittest.hasLength(2)); 1081 unittest.expect(o, unittest.hasLength(2));
1082 checkAccountstatusesCustomBatchRequestEntry(o[0]); 1082 checkAccountstatusesCustomBatchRequestEntry(o[0]);
1083 checkAccountstatusesCustomBatchRequestEntry(o[1]); 1083 checkAccountstatusesCustomBatchRequestEntry(o[1]);
1084 } 1084 }
1085 1085
1086 core.int buildCounterAccountstatusesCustomBatchRequest = 0; 1086 core.int buildCounterAccountstatusesCustomBatchRequest = 0;
1087 buildAccountstatusesCustomBatchRequest() { 1087 buildAccountstatusesCustomBatchRequest() {
1088 var o = new api.AccountstatusesCustomBatchRequest(); 1088 var o = new api.AccountstatusesCustomBatchRequest();
1089 buildCounterAccountstatusesCustomBatchRequest++; 1089 buildCounterAccountstatusesCustomBatchRequest++;
1090 if (buildCounterAccountstatusesCustomBatchRequest < 3) { 1090 if (buildCounterAccountstatusesCustomBatchRequest < 3) {
1091 o.entries = buildUnnamed534(); 1091 o.entries = buildUnnamed273();
1092 } 1092 }
1093 buildCounterAccountstatusesCustomBatchRequest--; 1093 buildCounterAccountstatusesCustomBatchRequest--;
1094 return o; 1094 return o;
1095 } 1095 }
1096 1096
1097 checkAccountstatusesCustomBatchRequest(api.AccountstatusesCustomBatchRequest o) { 1097 checkAccountstatusesCustomBatchRequest(api.AccountstatusesCustomBatchRequest o) {
1098 buildCounterAccountstatusesCustomBatchRequest++; 1098 buildCounterAccountstatusesCustomBatchRequest++;
1099 if (buildCounterAccountstatusesCustomBatchRequest < 3) { 1099 if (buildCounterAccountstatusesCustomBatchRequest < 3) {
1100 checkUnnamed534(o.entries); 1100 checkUnnamed273(o.entries);
1101 } 1101 }
1102 buildCounterAccountstatusesCustomBatchRequest--; 1102 buildCounterAccountstatusesCustomBatchRequest--;
1103 } 1103 }
1104 1104
1105 core.int buildCounterAccountstatusesCustomBatchRequestEntry = 0; 1105 core.int buildCounterAccountstatusesCustomBatchRequestEntry = 0;
1106 buildAccountstatusesCustomBatchRequestEntry() { 1106 buildAccountstatusesCustomBatchRequestEntry() {
1107 var o = new api.AccountstatusesCustomBatchRequestEntry(); 1107 var o = new api.AccountstatusesCustomBatchRequestEntry();
1108 buildCounterAccountstatusesCustomBatchRequestEntry++; 1108 buildCounterAccountstatusesCustomBatchRequestEntry++;
1109 if (buildCounterAccountstatusesCustomBatchRequestEntry < 3) { 1109 if (buildCounterAccountstatusesCustomBatchRequestEntry < 3) {
1110 o.accountId = "foo"; 1110 o.accountId = "foo";
1111 o.batchId = 42; 1111 o.batchId = 42;
1112 o.merchantId = "foo"; 1112 o.merchantId = "foo";
1113 o.method = "foo"; 1113 o.method = "foo";
1114 } 1114 }
1115 buildCounterAccountstatusesCustomBatchRequestEntry--; 1115 buildCounterAccountstatusesCustomBatchRequestEntry--;
1116 return o; 1116 return o;
1117 } 1117 }
1118 1118
1119 checkAccountstatusesCustomBatchRequestEntry(api.AccountstatusesCustomBatchReques tEntry o) { 1119 checkAccountstatusesCustomBatchRequestEntry(api.AccountstatusesCustomBatchReques tEntry o) {
1120 buildCounterAccountstatusesCustomBatchRequestEntry++; 1120 buildCounterAccountstatusesCustomBatchRequestEntry++;
1121 if (buildCounterAccountstatusesCustomBatchRequestEntry < 3) { 1121 if (buildCounterAccountstatusesCustomBatchRequestEntry < 3) {
1122 unittest.expect(o.accountId, unittest.equals('foo')); 1122 unittest.expect(o.accountId, unittest.equals('foo'));
1123 unittest.expect(o.batchId, unittest.equals(42)); 1123 unittest.expect(o.batchId, unittest.equals(42));
1124 unittest.expect(o.merchantId, unittest.equals('foo')); 1124 unittest.expect(o.merchantId, unittest.equals('foo'));
1125 unittest.expect(o.method, unittest.equals('foo')); 1125 unittest.expect(o.method, unittest.equals('foo'));
1126 } 1126 }
1127 buildCounterAccountstatusesCustomBatchRequestEntry--; 1127 buildCounterAccountstatusesCustomBatchRequestEntry--;
1128 } 1128 }
1129 1129
1130 buildUnnamed535() { 1130 buildUnnamed274() {
1131 var o = new core.List<api.AccountstatusesCustomBatchResponseEntry>(); 1131 var o = new core.List<api.AccountstatusesCustomBatchResponseEntry>();
1132 o.add(buildAccountstatusesCustomBatchResponseEntry()); 1132 o.add(buildAccountstatusesCustomBatchResponseEntry());
1133 o.add(buildAccountstatusesCustomBatchResponseEntry()); 1133 o.add(buildAccountstatusesCustomBatchResponseEntry());
1134 return o; 1134 return o;
1135 } 1135 }
1136 1136
1137 checkUnnamed535(core.List<api.AccountstatusesCustomBatchResponseEntry> o) { 1137 checkUnnamed274(core.List<api.AccountstatusesCustomBatchResponseEntry> o) {
1138 unittest.expect(o, unittest.hasLength(2)); 1138 unittest.expect(o, unittest.hasLength(2));
1139 checkAccountstatusesCustomBatchResponseEntry(o[0]); 1139 checkAccountstatusesCustomBatchResponseEntry(o[0]);
1140 checkAccountstatusesCustomBatchResponseEntry(o[1]); 1140 checkAccountstatusesCustomBatchResponseEntry(o[1]);
1141 } 1141 }
1142 1142
1143 core.int buildCounterAccountstatusesCustomBatchResponse = 0; 1143 core.int buildCounterAccountstatusesCustomBatchResponse = 0;
1144 buildAccountstatusesCustomBatchResponse() { 1144 buildAccountstatusesCustomBatchResponse() {
1145 var o = new api.AccountstatusesCustomBatchResponse(); 1145 var o = new api.AccountstatusesCustomBatchResponse();
1146 buildCounterAccountstatusesCustomBatchResponse++; 1146 buildCounterAccountstatusesCustomBatchResponse++;
1147 if (buildCounterAccountstatusesCustomBatchResponse < 3) { 1147 if (buildCounterAccountstatusesCustomBatchResponse < 3) {
1148 o.entries = buildUnnamed535(); 1148 o.entries = buildUnnamed274();
1149 o.kind = "foo"; 1149 o.kind = "foo";
1150 } 1150 }
1151 buildCounterAccountstatusesCustomBatchResponse--; 1151 buildCounterAccountstatusesCustomBatchResponse--;
1152 return o; 1152 return o;
1153 } 1153 }
1154 1154
1155 checkAccountstatusesCustomBatchResponse(api.AccountstatusesCustomBatchResponse o ) { 1155 checkAccountstatusesCustomBatchResponse(api.AccountstatusesCustomBatchResponse o ) {
1156 buildCounterAccountstatusesCustomBatchResponse++; 1156 buildCounterAccountstatusesCustomBatchResponse++;
1157 if (buildCounterAccountstatusesCustomBatchResponse < 3) { 1157 if (buildCounterAccountstatusesCustomBatchResponse < 3) {
1158 checkUnnamed535(o.entries); 1158 checkUnnamed274(o.entries);
1159 unittest.expect(o.kind, unittest.equals('foo')); 1159 unittest.expect(o.kind, unittest.equals('foo'));
1160 } 1160 }
1161 buildCounterAccountstatusesCustomBatchResponse--; 1161 buildCounterAccountstatusesCustomBatchResponse--;
1162 } 1162 }
1163 1163
1164 core.int buildCounterAccountstatusesCustomBatchResponseEntry = 0; 1164 core.int buildCounterAccountstatusesCustomBatchResponseEntry = 0;
1165 buildAccountstatusesCustomBatchResponseEntry() { 1165 buildAccountstatusesCustomBatchResponseEntry() {
1166 var o = new api.AccountstatusesCustomBatchResponseEntry(); 1166 var o = new api.AccountstatusesCustomBatchResponseEntry();
1167 buildCounterAccountstatusesCustomBatchResponseEntry++; 1167 buildCounterAccountstatusesCustomBatchResponseEntry++;
1168 if (buildCounterAccountstatusesCustomBatchResponseEntry < 3) { 1168 if (buildCounterAccountstatusesCustomBatchResponseEntry < 3) {
1169 o.accountStatus = buildAccountStatus(); 1169 o.accountStatus = buildAccountStatus();
1170 o.batchId = 42; 1170 o.batchId = 42;
1171 o.errors = buildErrors(); 1171 o.errors = buildErrors();
1172 } 1172 }
1173 buildCounterAccountstatusesCustomBatchResponseEntry--; 1173 buildCounterAccountstatusesCustomBatchResponseEntry--;
1174 return o; 1174 return o;
1175 } 1175 }
1176 1176
1177 checkAccountstatusesCustomBatchResponseEntry(api.AccountstatusesCustomBatchRespo nseEntry o) { 1177 checkAccountstatusesCustomBatchResponseEntry(api.AccountstatusesCustomBatchRespo nseEntry o) {
1178 buildCounterAccountstatusesCustomBatchResponseEntry++; 1178 buildCounterAccountstatusesCustomBatchResponseEntry++;
1179 if (buildCounterAccountstatusesCustomBatchResponseEntry < 3) { 1179 if (buildCounterAccountstatusesCustomBatchResponseEntry < 3) {
1180 checkAccountStatus(o.accountStatus); 1180 checkAccountStatus(o.accountStatus);
1181 unittest.expect(o.batchId, unittest.equals(42)); 1181 unittest.expect(o.batchId, unittest.equals(42));
1182 checkErrors(o.errors); 1182 checkErrors(o.errors);
1183 } 1183 }
1184 buildCounterAccountstatusesCustomBatchResponseEntry--; 1184 buildCounterAccountstatusesCustomBatchResponseEntry--;
1185 } 1185 }
1186 1186
1187 buildUnnamed536() { 1187 buildUnnamed275() {
1188 var o = new core.List<api.AccountStatus>(); 1188 var o = new core.List<api.AccountStatus>();
1189 o.add(buildAccountStatus()); 1189 o.add(buildAccountStatus());
1190 o.add(buildAccountStatus()); 1190 o.add(buildAccountStatus());
1191 return o; 1191 return o;
1192 } 1192 }
1193 1193
1194 checkUnnamed536(core.List<api.AccountStatus> o) { 1194 checkUnnamed275(core.List<api.AccountStatus> o) {
1195 unittest.expect(o, unittest.hasLength(2)); 1195 unittest.expect(o, unittest.hasLength(2));
1196 checkAccountStatus(o[0]); 1196 checkAccountStatus(o[0]);
1197 checkAccountStatus(o[1]); 1197 checkAccountStatus(o[1]);
1198 } 1198 }
1199 1199
1200 core.int buildCounterAccountstatusesListResponse = 0; 1200 core.int buildCounterAccountstatusesListResponse = 0;
1201 buildAccountstatusesListResponse() { 1201 buildAccountstatusesListResponse() {
1202 var o = new api.AccountstatusesListResponse(); 1202 var o = new api.AccountstatusesListResponse();
1203 buildCounterAccountstatusesListResponse++; 1203 buildCounterAccountstatusesListResponse++;
1204 if (buildCounterAccountstatusesListResponse < 3) { 1204 if (buildCounterAccountstatusesListResponse < 3) {
1205 o.kind = "foo"; 1205 o.kind = "foo";
1206 o.nextPageToken = "foo"; 1206 o.nextPageToken = "foo";
1207 o.resources = buildUnnamed536(); 1207 o.resources = buildUnnamed275();
1208 } 1208 }
1209 buildCounterAccountstatusesListResponse--; 1209 buildCounterAccountstatusesListResponse--;
1210 return o; 1210 return o;
1211 } 1211 }
1212 1212
1213 checkAccountstatusesListResponse(api.AccountstatusesListResponse o) { 1213 checkAccountstatusesListResponse(api.AccountstatusesListResponse o) {
1214 buildCounterAccountstatusesListResponse++; 1214 buildCounterAccountstatusesListResponse++;
1215 if (buildCounterAccountstatusesListResponse < 3) { 1215 if (buildCounterAccountstatusesListResponse < 3) {
1216 unittest.expect(o.kind, unittest.equals('foo')); 1216 unittest.expect(o.kind, unittest.equals('foo'));
1217 unittest.expect(o.nextPageToken, unittest.equals('foo')); 1217 unittest.expect(o.nextPageToken, unittest.equals('foo'));
1218 checkUnnamed536(o.resources); 1218 checkUnnamed275(o.resources);
1219 } 1219 }
1220 buildCounterAccountstatusesListResponse--; 1220 buildCounterAccountstatusesListResponse--;
1221 } 1221 }
1222 1222
1223 buildUnnamed537() { 1223 buildUnnamed276() {
1224 var o = new core.List<api.AccounttaxCustomBatchRequestEntry>(); 1224 var o = new core.List<api.AccounttaxCustomBatchRequestEntry>();
1225 o.add(buildAccounttaxCustomBatchRequestEntry()); 1225 o.add(buildAccounttaxCustomBatchRequestEntry());
1226 o.add(buildAccounttaxCustomBatchRequestEntry()); 1226 o.add(buildAccounttaxCustomBatchRequestEntry());
1227 return o; 1227 return o;
1228 } 1228 }
1229 1229
1230 checkUnnamed537(core.List<api.AccounttaxCustomBatchRequestEntry> o) { 1230 checkUnnamed276(core.List<api.AccounttaxCustomBatchRequestEntry> o) {
1231 unittest.expect(o, unittest.hasLength(2)); 1231 unittest.expect(o, unittest.hasLength(2));
1232 checkAccounttaxCustomBatchRequestEntry(o[0]); 1232 checkAccounttaxCustomBatchRequestEntry(o[0]);
1233 checkAccounttaxCustomBatchRequestEntry(o[1]); 1233 checkAccounttaxCustomBatchRequestEntry(o[1]);
1234 } 1234 }
1235 1235
1236 core.int buildCounterAccounttaxCustomBatchRequest = 0; 1236 core.int buildCounterAccounttaxCustomBatchRequest = 0;
1237 buildAccounttaxCustomBatchRequest() { 1237 buildAccounttaxCustomBatchRequest() {
1238 var o = new api.AccounttaxCustomBatchRequest(); 1238 var o = new api.AccounttaxCustomBatchRequest();
1239 buildCounterAccounttaxCustomBatchRequest++; 1239 buildCounterAccounttaxCustomBatchRequest++;
1240 if (buildCounterAccounttaxCustomBatchRequest < 3) { 1240 if (buildCounterAccounttaxCustomBatchRequest < 3) {
1241 o.entries = buildUnnamed537(); 1241 o.entries = buildUnnamed276();
1242 } 1242 }
1243 buildCounterAccounttaxCustomBatchRequest--; 1243 buildCounterAccounttaxCustomBatchRequest--;
1244 return o; 1244 return o;
1245 } 1245 }
1246 1246
1247 checkAccounttaxCustomBatchRequest(api.AccounttaxCustomBatchRequest o) { 1247 checkAccounttaxCustomBatchRequest(api.AccounttaxCustomBatchRequest o) {
1248 buildCounterAccounttaxCustomBatchRequest++; 1248 buildCounterAccounttaxCustomBatchRequest++;
1249 if (buildCounterAccounttaxCustomBatchRequest < 3) { 1249 if (buildCounterAccounttaxCustomBatchRequest < 3) {
1250 checkUnnamed537(o.entries); 1250 checkUnnamed276(o.entries);
1251 } 1251 }
1252 buildCounterAccounttaxCustomBatchRequest--; 1252 buildCounterAccounttaxCustomBatchRequest--;
1253 } 1253 }
1254 1254
1255 core.int buildCounterAccounttaxCustomBatchRequestEntry = 0; 1255 core.int buildCounterAccounttaxCustomBatchRequestEntry = 0;
1256 buildAccounttaxCustomBatchRequestEntry() { 1256 buildAccounttaxCustomBatchRequestEntry() {
1257 var o = new api.AccounttaxCustomBatchRequestEntry(); 1257 var o = new api.AccounttaxCustomBatchRequestEntry();
1258 buildCounterAccounttaxCustomBatchRequestEntry++; 1258 buildCounterAccounttaxCustomBatchRequestEntry++;
1259 if (buildCounterAccounttaxCustomBatchRequestEntry < 3) { 1259 if (buildCounterAccounttaxCustomBatchRequestEntry < 3) {
1260 o.accountId = "foo"; 1260 o.accountId = "foo";
(...skipping 11 matching lines...) Expand all
1272 if (buildCounterAccounttaxCustomBatchRequestEntry < 3) { 1272 if (buildCounterAccounttaxCustomBatchRequestEntry < 3) {
1273 unittest.expect(o.accountId, unittest.equals('foo')); 1273 unittest.expect(o.accountId, unittest.equals('foo'));
1274 checkAccountTax(o.accountTax); 1274 checkAccountTax(o.accountTax);
1275 unittest.expect(o.batchId, unittest.equals(42)); 1275 unittest.expect(o.batchId, unittest.equals(42));
1276 unittest.expect(o.merchantId, unittest.equals('foo')); 1276 unittest.expect(o.merchantId, unittest.equals('foo'));
1277 unittest.expect(o.method, unittest.equals('foo')); 1277 unittest.expect(o.method, unittest.equals('foo'));
1278 } 1278 }
1279 buildCounterAccounttaxCustomBatchRequestEntry--; 1279 buildCounterAccounttaxCustomBatchRequestEntry--;
1280 } 1280 }
1281 1281
1282 buildUnnamed538() { 1282 buildUnnamed277() {
1283 var o = new core.List<api.AccounttaxCustomBatchResponseEntry>(); 1283 var o = new core.List<api.AccounttaxCustomBatchResponseEntry>();
1284 o.add(buildAccounttaxCustomBatchResponseEntry()); 1284 o.add(buildAccounttaxCustomBatchResponseEntry());
1285 o.add(buildAccounttaxCustomBatchResponseEntry()); 1285 o.add(buildAccounttaxCustomBatchResponseEntry());
1286 return o; 1286 return o;
1287 } 1287 }
1288 1288
1289 checkUnnamed538(core.List<api.AccounttaxCustomBatchResponseEntry> o) { 1289 checkUnnamed277(core.List<api.AccounttaxCustomBatchResponseEntry> o) {
1290 unittest.expect(o, unittest.hasLength(2)); 1290 unittest.expect(o, unittest.hasLength(2));
1291 checkAccounttaxCustomBatchResponseEntry(o[0]); 1291 checkAccounttaxCustomBatchResponseEntry(o[0]);
1292 checkAccounttaxCustomBatchResponseEntry(o[1]); 1292 checkAccounttaxCustomBatchResponseEntry(o[1]);
1293 } 1293 }
1294 1294
1295 core.int buildCounterAccounttaxCustomBatchResponse = 0; 1295 core.int buildCounterAccounttaxCustomBatchResponse = 0;
1296 buildAccounttaxCustomBatchResponse() { 1296 buildAccounttaxCustomBatchResponse() {
1297 var o = new api.AccounttaxCustomBatchResponse(); 1297 var o = new api.AccounttaxCustomBatchResponse();
1298 buildCounterAccounttaxCustomBatchResponse++; 1298 buildCounterAccounttaxCustomBatchResponse++;
1299 if (buildCounterAccounttaxCustomBatchResponse < 3) { 1299 if (buildCounterAccounttaxCustomBatchResponse < 3) {
1300 o.entries = buildUnnamed538(); 1300 o.entries = buildUnnamed277();
1301 o.kind = "foo"; 1301 o.kind = "foo";
1302 } 1302 }
1303 buildCounterAccounttaxCustomBatchResponse--; 1303 buildCounterAccounttaxCustomBatchResponse--;
1304 return o; 1304 return o;
1305 } 1305 }
1306 1306
1307 checkAccounttaxCustomBatchResponse(api.AccounttaxCustomBatchResponse o) { 1307 checkAccounttaxCustomBatchResponse(api.AccounttaxCustomBatchResponse o) {
1308 buildCounterAccounttaxCustomBatchResponse++; 1308 buildCounterAccounttaxCustomBatchResponse++;
1309 if (buildCounterAccounttaxCustomBatchResponse < 3) { 1309 if (buildCounterAccounttaxCustomBatchResponse < 3) {
1310 checkUnnamed538(o.entries); 1310 checkUnnamed277(o.entries);
1311 unittest.expect(o.kind, unittest.equals('foo')); 1311 unittest.expect(o.kind, unittest.equals('foo'));
1312 } 1312 }
1313 buildCounterAccounttaxCustomBatchResponse--; 1313 buildCounterAccounttaxCustomBatchResponse--;
1314 } 1314 }
1315 1315
1316 core.int buildCounterAccounttaxCustomBatchResponseEntry = 0; 1316 core.int buildCounterAccounttaxCustomBatchResponseEntry = 0;
1317 buildAccounttaxCustomBatchResponseEntry() { 1317 buildAccounttaxCustomBatchResponseEntry() {
1318 var o = new api.AccounttaxCustomBatchResponseEntry(); 1318 var o = new api.AccounttaxCustomBatchResponseEntry();
1319 buildCounterAccounttaxCustomBatchResponseEntry++; 1319 buildCounterAccounttaxCustomBatchResponseEntry++;
1320 if (buildCounterAccounttaxCustomBatchResponseEntry < 3) { 1320 if (buildCounterAccounttaxCustomBatchResponseEntry < 3) {
(...skipping 10 matching lines...) Expand all
1331 buildCounterAccounttaxCustomBatchResponseEntry++; 1331 buildCounterAccounttaxCustomBatchResponseEntry++;
1332 if (buildCounterAccounttaxCustomBatchResponseEntry < 3) { 1332 if (buildCounterAccounttaxCustomBatchResponseEntry < 3) {
1333 checkAccountTax(o.accountTax); 1333 checkAccountTax(o.accountTax);
1334 unittest.expect(o.batchId, unittest.equals(42)); 1334 unittest.expect(o.batchId, unittest.equals(42));
1335 checkErrors(o.errors); 1335 checkErrors(o.errors);
1336 unittest.expect(o.kind, unittest.equals('foo')); 1336 unittest.expect(o.kind, unittest.equals('foo'));
1337 } 1337 }
1338 buildCounterAccounttaxCustomBatchResponseEntry--; 1338 buildCounterAccounttaxCustomBatchResponseEntry--;
1339 } 1339 }
1340 1340
1341 buildUnnamed539() { 1341 buildUnnamed278() {
1342 var o = new core.List<api.AccountTax>(); 1342 var o = new core.List<api.AccountTax>();
1343 o.add(buildAccountTax()); 1343 o.add(buildAccountTax());
1344 o.add(buildAccountTax()); 1344 o.add(buildAccountTax());
1345 return o; 1345 return o;
1346 } 1346 }
1347 1347
1348 checkUnnamed539(core.List<api.AccountTax> o) { 1348 checkUnnamed278(core.List<api.AccountTax> o) {
1349 unittest.expect(o, unittest.hasLength(2)); 1349 unittest.expect(o, unittest.hasLength(2));
1350 checkAccountTax(o[0]); 1350 checkAccountTax(o[0]);
1351 checkAccountTax(o[1]); 1351 checkAccountTax(o[1]);
1352 } 1352 }
1353 1353
1354 core.int buildCounterAccounttaxListResponse = 0; 1354 core.int buildCounterAccounttaxListResponse = 0;
1355 buildAccounttaxListResponse() { 1355 buildAccounttaxListResponse() {
1356 var o = new api.AccounttaxListResponse(); 1356 var o = new api.AccounttaxListResponse();
1357 buildCounterAccounttaxListResponse++; 1357 buildCounterAccounttaxListResponse++;
1358 if (buildCounterAccounttaxListResponse < 3) { 1358 if (buildCounterAccounttaxListResponse < 3) {
1359 o.kind = "foo"; 1359 o.kind = "foo";
1360 o.nextPageToken = "foo"; 1360 o.nextPageToken = "foo";
1361 o.resources = buildUnnamed539(); 1361 o.resources = buildUnnamed278();
1362 } 1362 }
1363 buildCounterAccounttaxListResponse--; 1363 buildCounterAccounttaxListResponse--;
1364 return o; 1364 return o;
1365 } 1365 }
1366 1366
1367 checkAccounttaxListResponse(api.AccounttaxListResponse o) { 1367 checkAccounttaxListResponse(api.AccounttaxListResponse o) {
1368 buildCounterAccounttaxListResponse++; 1368 buildCounterAccounttaxListResponse++;
1369 if (buildCounterAccounttaxListResponse < 3) { 1369 if (buildCounterAccounttaxListResponse < 3) {
1370 unittest.expect(o.kind, unittest.equals('foo')); 1370 unittest.expect(o.kind, unittest.equals('foo'));
1371 unittest.expect(o.nextPageToken, unittest.equals('foo')); 1371 unittest.expect(o.nextPageToken, unittest.equals('foo'));
1372 checkUnnamed539(o.resources); 1372 checkUnnamed278(o.resources);
1373 } 1373 }
1374 buildCounterAccounttaxListResponse--; 1374 buildCounterAccounttaxListResponse--;
1375 } 1375 }
1376 1376
1377 core.int buildCounterCarrierRate = 0; 1377 core.int buildCounterCarrierRate = 0;
1378 buildCarrierRate() { 1378 buildCarrierRate() {
1379 var o = new api.CarrierRate(); 1379 var o = new api.CarrierRate();
1380 buildCounterCarrierRate++; 1380 buildCounterCarrierRate++;
1381 if (buildCounterCarrierRate < 3) { 1381 if (buildCounterCarrierRate < 3) {
1382 o.carrierName = "foo"; 1382 o.carrierName = "foo";
(...skipping 13 matching lines...) Expand all
1396 unittest.expect(o.carrierName, unittest.equals('foo')); 1396 unittest.expect(o.carrierName, unittest.equals('foo'));
1397 unittest.expect(o.carrierService, unittest.equals('foo')); 1397 unittest.expect(o.carrierService, unittest.equals('foo'));
1398 checkPrice(o.flatAdjustment); 1398 checkPrice(o.flatAdjustment);
1399 unittest.expect(o.name, unittest.equals('foo')); 1399 unittest.expect(o.name, unittest.equals('foo'));
1400 unittest.expect(o.originPostalCode, unittest.equals('foo')); 1400 unittest.expect(o.originPostalCode, unittest.equals('foo'));
1401 unittest.expect(o.percentageAdjustment, unittest.equals('foo')); 1401 unittest.expect(o.percentageAdjustment, unittest.equals('foo'));
1402 } 1402 }
1403 buildCounterCarrierRate--; 1403 buildCounterCarrierRate--;
1404 } 1404 }
1405 1405
1406 buildUnnamed540() { 1406 buildUnnamed279() {
1407 var o = new core.List<core.String>(); 1407 var o = new core.List<core.String>();
1408 o.add("foo"); 1408 o.add("foo");
1409 o.add("foo"); 1409 o.add("foo");
1410 return o; 1410 return o;
1411 } 1411 }
1412 1412
1413 checkUnnamed540(core.List<core.String> o) { 1413 checkUnnamed279(core.List<core.String> o) {
1414 unittest.expect(o, unittest.hasLength(2)); 1414 unittest.expect(o, unittest.hasLength(2));
1415 unittest.expect(o[0], unittest.equals('foo')); 1415 unittest.expect(o[0], unittest.equals('foo'));
1416 unittest.expect(o[1], unittest.equals('foo')); 1416 unittest.expect(o[1], unittest.equals('foo'));
1417 } 1417 }
1418 1418
1419 core.int buildCounterCarriersCarrier = 0; 1419 core.int buildCounterCarriersCarrier = 0;
1420 buildCarriersCarrier() { 1420 buildCarriersCarrier() {
1421 var o = new api.CarriersCarrier(); 1421 var o = new api.CarriersCarrier();
1422 buildCounterCarriersCarrier++; 1422 buildCounterCarriersCarrier++;
1423 if (buildCounterCarriersCarrier < 3) { 1423 if (buildCounterCarriersCarrier < 3) {
1424 o.country = "foo"; 1424 o.country = "foo";
1425 o.name = "foo"; 1425 o.name = "foo";
1426 o.services = buildUnnamed540(); 1426 o.services = buildUnnamed279();
1427 } 1427 }
1428 buildCounterCarriersCarrier--; 1428 buildCounterCarriersCarrier--;
1429 return o; 1429 return o;
1430 } 1430 }
1431 1431
1432 checkCarriersCarrier(api.CarriersCarrier o) { 1432 checkCarriersCarrier(api.CarriersCarrier o) {
1433 buildCounterCarriersCarrier++; 1433 buildCounterCarriersCarrier++;
1434 if (buildCounterCarriersCarrier < 3) { 1434 if (buildCounterCarriersCarrier < 3) {
1435 unittest.expect(o.country, unittest.equals('foo')); 1435 unittest.expect(o.country, unittest.equals('foo'));
1436 unittest.expect(o.name, unittest.equals('foo')); 1436 unittest.expect(o.name, unittest.equals('foo'));
1437 checkUnnamed540(o.services); 1437 checkUnnamed279(o.services);
1438 } 1438 }
1439 buildCounterCarriersCarrier--; 1439 buildCounterCarriersCarrier--;
1440 } 1440 }
1441 1441
1442 buildUnnamed541() { 1442 buildUnnamed280() {
1443 var o = new core.List<core.String>(); 1443 var o = new core.List<core.String>();
1444 o.add("foo"); 1444 o.add("foo");
1445 o.add("foo"); 1445 o.add("foo");
1446 return o; 1446 return o;
1447 } 1447 }
1448 1448
1449 checkUnnamed541(core.List<core.String> o) { 1449 checkUnnamed280(core.List<core.String> o) {
1450 unittest.expect(o, unittest.hasLength(2)); 1450 unittest.expect(o, unittest.hasLength(2));
1451 unittest.expect(o[0], unittest.equals('foo')); 1451 unittest.expect(o[0], unittest.equals('foo'));
1452 unittest.expect(o[1], unittest.equals('foo')); 1452 unittest.expect(o[1], unittest.equals('foo'));
1453 } 1453 }
1454 1454
1455 core.int buildCounterDatafeed = 0; 1455 core.int buildCounterDatafeed = 0;
1456 buildDatafeed() { 1456 buildDatafeed() {
1457 var o = new api.Datafeed(); 1457 var o = new api.Datafeed();
1458 buildCounterDatafeed++; 1458 buildCounterDatafeed++;
1459 if (buildCounterDatafeed < 3) { 1459 if (buildCounterDatafeed < 3) {
1460 o.attributeLanguage = "foo"; 1460 o.attributeLanguage = "foo";
1461 o.contentLanguage = "foo"; 1461 o.contentLanguage = "foo";
1462 o.contentType = "foo"; 1462 o.contentType = "foo";
1463 o.fetchSchedule = buildDatafeedFetchSchedule(); 1463 o.fetchSchedule = buildDatafeedFetchSchedule();
1464 o.fileName = "foo"; 1464 o.fileName = "foo";
1465 o.format = buildDatafeedFormat(); 1465 o.format = buildDatafeedFormat();
1466 o.id = "foo"; 1466 o.id = "foo";
1467 o.intendedDestinations = buildUnnamed541(); 1467 o.intendedDestinations = buildUnnamed280();
1468 o.kind = "foo"; 1468 o.kind = "foo";
1469 o.name = "foo"; 1469 o.name = "foo";
1470 o.targetCountry = "foo"; 1470 o.targetCountry = "foo";
1471 } 1471 }
1472 buildCounterDatafeed--; 1472 buildCounterDatafeed--;
1473 return o; 1473 return o;
1474 } 1474 }
1475 1475
1476 checkDatafeed(api.Datafeed o) { 1476 checkDatafeed(api.Datafeed o) {
1477 buildCounterDatafeed++; 1477 buildCounterDatafeed++;
1478 if (buildCounterDatafeed < 3) { 1478 if (buildCounterDatafeed < 3) {
1479 unittest.expect(o.attributeLanguage, unittest.equals('foo')); 1479 unittest.expect(o.attributeLanguage, unittest.equals('foo'));
1480 unittest.expect(o.contentLanguage, unittest.equals('foo')); 1480 unittest.expect(o.contentLanguage, unittest.equals('foo'));
1481 unittest.expect(o.contentType, unittest.equals('foo')); 1481 unittest.expect(o.contentType, unittest.equals('foo'));
1482 checkDatafeedFetchSchedule(o.fetchSchedule); 1482 checkDatafeedFetchSchedule(o.fetchSchedule);
1483 unittest.expect(o.fileName, unittest.equals('foo')); 1483 unittest.expect(o.fileName, unittest.equals('foo'));
1484 checkDatafeedFormat(o.format); 1484 checkDatafeedFormat(o.format);
1485 unittest.expect(o.id, unittest.equals('foo')); 1485 unittest.expect(o.id, unittest.equals('foo'));
1486 checkUnnamed541(o.intendedDestinations); 1486 checkUnnamed280(o.intendedDestinations);
1487 unittest.expect(o.kind, unittest.equals('foo')); 1487 unittest.expect(o.kind, unittest.equals('foo'));
1488 unittest.expect(o.name, unittest.equals('foo')); 1488 unittest.expect(o.name, unittest.equals('foo'));
1489 unittest.expect(o.targetCountry, unittest.equals('foo')); 1489 unittest.expect(o.targetCountry, unittest.equals('foo'));
1490 } 1490 }
1491 buildCounterDatafeed--; 1491 buildCounterDatafeed--;
1492 } 1492 }
1493 1493
1494 core.int buildCounterDatafeedFetchSchedule = 0; 1494 core.int buildCounterDatafeedFetchSchedule = 0;
1495 buildDatafeedFetchSchedule() { 1495 buildDatafeedFetchSchedule() {
1496 var o = new api.DatafeedFetchSchedule(); 1496 var o = new api.DatafeedFetchSchedule();
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
1540 checkDatafeedFormat(api.DatafeedFormat o) { 1540 checkDatafeedFormat(api.DatafeedFormat o) {
1541 buildCounterDatafeedFormat++; 1541 buildCounterDatafeedFormat++;
1542 if (buildCounterDatafeedFormat < 3) { 1542 if (buildCounterDatafeedFormat < 3) {
1543 unittest.expect(o.columnDelimiter, unittest.equals('foo')); 1543 unittest.expect(o.columnDelimiter, unittest.equals('foo'));
1544 unittest.expect(o.fileEncoding, unittest.equals('foo')); 1544 unittest.expect(o.fileEncoding, unittest.equals('foo'));
1545 unittest.expect(o.quotingMode, unittest.equals('foo')); 1545 unittest.expect(o.quotingMode, unittest.equals('foo'));
1546 } 1546 }
1547 buildCounterDatafeedFormat--; 1547 buildCounterDatafeedFormat--;
1548 } 1548 }
1549 1549
1550 buildUnnamed542() { 1550 buildUnnamed281() {
1551 var o = new core.List<api.DatafeedStatusError>(); 1551 var o = new core.List<api.DatafeedStatusError>();
1552 o.add(buildDatafeedStatusError()); 1552 o.add(buildDatafeedStatusError());
1553 o.add(buildDatafeedStatusError()); 1553 o.add(buildDatafeedStatusError());
1554 return o; 1554 return o;
1555 } 1555 }
1556 1556
1557 checkUnnamed542(core.List<api.DatafeedStatusError> o) { 1557 checkUnnamed281(core.List<api.DatafeedStatusError> o) {
1558 unittest.expect(o, unittest.hasLength(2)); 1558 unittest.expect(o, unittest.hasLength(2));
1559 checkDatafeedStatusError(o[0]); 1559 checkDatafeedStatusError(o[0]);
1560 checkDatafeedStatusError(o[1]); 1560 checkDatafeedStatusError(o[1]);
1561 } 1561 }
1562 1562
1563 buildUnnamed543() { 1563 buildUnnamed282() {
1564 var o = new core.List<api.DatafeedStatusError>(); 1564 var o = new core.List<api.DatafeedStatusError>();
1565 o.add(buildDatafeedStatusError()); 1565 o.add(buildDatafeedStatusError());
1566 o.add(buildDatafeedStatusError()); 1566 o.add(buildDatafeedStatusError());
1567 return o; 1567 return o;
1568 } 1568 }
1569 1569
1570 checkUnnamed543(core.List<api.DatafeedStatusError> o) { 1570 checkUnnamed282(core.List<api.DatafeedStatusError> o) {
1571 unittest.expect(o, unittest.hasLength(2)); 1571 unittest.expect(o, unittest.hasLength(2));
1572 checkDatafeedStatusError(o[0]); 1572 checkDatafeedStatusError(o[0]);
1573 checkDatafeedStatusError(o[1]); 1573 checkDatafeedStatusError(o[1]);
1574 } 1574 }
1575 1575
1576 core.int buildCounterDatafeedStatus = 0; 1576 core.int buildCounterDatafeedStatus = 0;
1577 buildDatafeedStatus() { 1577 buildDatafeedStatus() {
1578 var o = new api.DatafeedStatus(); 1578 var o = new api.DatafeedStatus();
1579 buildCounterDatafeedStatus++; 1579 buildCounterDatafeedStatus++;
1580 if (buildCounterDatafeedStatus < 3) { 1580 if (buildCounterDatafeedStatus < 3) {
1581 o.datafeedId = "foo"; 1581 o.datafeedId = "foo";
1582 o.errors = buildUnnamed542(); 1582 o.errors = buildUnnamed281();
1583 o.itemsTotal = "foo"; 1583 o.itemsTotal = "foo";
1584 o.itemsValid = "foo"; 1584 o.itemsValid = "foo";
1585 o.kind = "foo"; 1585 o.kind = "foo";
1586 o.lastUploadDate = "foo"; 1586 o.lastUploadDate = "foo";
1587 o.processingStatus = "foo"; 1587 o.processingStatus = "foo";
1588 o.warnings = buildUnnamed543(); 1588 o.warnings = buildUnnamed282();
1589 } 1589 }
1590 buildCounterDatafeedStatus--; 1590 buildCounterDatafeedStatus--;
1591 return o; 1591 return o;
1592 } 1592 }
1593 1593
1594 checkDatafeedStatus(api.DatafeedStatus o) { 1594 checkDatafeedStatus(api.DatafeedStatus o) {
1595 buildCounterDatafeedStatus++; 1595 buildCounterDatafeedStatus++;
1596 if (buildCounterDatafeedStatus < 3) { 1596 if (buildCounterDatafeedStatus < 3) {
1597 unittest.expect(o.datafeedId, unittest.equals('foo')); 1597 unittest.expect(o.datafeedId, unittest.equals('foo'));
1598 checkUnnamed542(o.errors); 1598 checkUnnamed281(o.errors);
1599 unittest.expect(o.itemsTotal, unittest.equals('foo')); 1599 unittest.expect(o.itemsTotal, unittest.equals('foo'));
1600 unittest.expect(o.itemsValid, unittest.equals('foo')); 1600 unittest.expect(o.itemsValid, unittest.equals('foo'));
1601 unittest.expect(o.kind, unittest.equals('foo')); 1601 unittest.expect(o.kind, unittest.equals('foo'));
1602 unittest.expect(o.lastUploadDate, unittest.equals('foo')); 1602 unittest.expect(o.lastUploadDate, unittest.equals('foo'));
1603 unittest.expect(o.processingStatus, unittest.equals('foo')); 1603 unittest.expect(o.processingStatus, unittest.equals('foo'));
1604 checkUnnamed543(o.warnings); 1604 checkUnnamed282(o.warnings);
1605 } 1605 }
1606 buildCounterDatafeedStatus--; 1606 buildCounterDatafeedStatus--;
1607 } 1607 }
1608 1608
1609 buildUnnamed544() { 1609 buildUnnamed283() {
1610 var o = new core.List<api.DatafeedStatusExample>(); 1610 var o = new core.List<api.DatafeedStatusExample>();
1611 o.add(buildDatafeedStatusExample()); 1611 o.add(buildDatafeedStatusExample());
1612 o.add(buildDatafeedStatusExample()); 1612 o.add(buildDatafeedStatusExample());
1613 return o; 1613 return o;
1614 } 1614 }
1615 1615
1616 checkUnnamed544(core.List<api.DatafeedStatusExample> o) { 1616 checkUnnamed283(core.List<api.DatafeedStatusExample> o) {
1617 unittest.expect(o, unittest.hasLength(2)); 1617 unittest.expect(o, unittest.hasLength(2));
1618 checkDatafeedStatusExample(o[0]); 1618 checkDatafeedStatusExample(o[0]);
1619 checkDatafeedStatusExample(o[1]); 1619 checkDatafeedStatusExample(o[1]);
1620 } 1620 }
1621 1621
1622 core.int buildCounterDatafeedStatusError = 0; 1622 core.int buildCounterDatafeedStatusError = 0;
1623 buildDatafeedStatusError() { 1623 buildDatafeedStatusError() {
1624 var o = new api.DatafeedStatusError(); 1624 var o = new api.DatafeedStatusError();
1625 buildCounterDatafeedStatusError++; 1625 buildCounterDatafeedStatusError++;
1626 if (buildCounterDatafeedStatusError < 3) { 1626 if (buildCounterDatafeedStatusError < 3) {
1627 o.code = "foo"; 1627 o.code = "foo";
1628 o.count = "foo"; 1628 o.count = "foo";
1629 o.examples = buildUnnamed544(); 1629 o.examples = buildUnnamed283();
1630 o.message = "foo"; 1630 o.message = "foo";
1631 } 1631 }
1632 buildCounterDatafeedStatusError--; 1632 buildCounterDatafeedStatusError--;
1633 return o; 1633 return o;
1634 } 1634 }
1635 1635
1636 checkDatafeedStatusError(api.DatafeedStatusError o) { 1636 checkDatafeedStatusError(api.DatafeedStatusError o) {
1637 buildCounterDatafeedStatusError++; 1637 buildCounterDatafeedStatusError++;
1638 if (buildCounterDatafeedStatusError < 3) { 1638 if (buildCounterDatafeedStatusError < 3) {
1639 unittest.expect(o.code, unittest.equals('foo')); 1639 unittest.expect(o.code, unittest.equals('foo'));
1640 unittest.expect(o.count, unittest.equals('foo')); 1640 unittest.expect(o.count, unittest.equals('foo'));
1641 checkUnnamed544(o.examples); 1641 checkUnnamed283(o.examples);
1642 unittest.expect(o.message, unittest.equals('foo')); 1642 unittest.expect(o.message, unittest.equals('foo'));
1643 } 1643 }
1644 buildCounterDatafeedStatusError--; 1644 buildCounterDatafeedStatusError--;
1645 } 1645 }
1646 1646
1647 core.int buildCounterDatafeedStatusExample = 0; 1647 core.int buildCounterDatafeedStatusExample = 0;
1648 buildDatafeedStatusExample() { 1648 buildDatafeedStatusExample() {
1649 var o = new api.DatafeedStatusExample(); 1649 var o = new api.DatafeedStatusExample();
1650 buildCounterDatafeedStatusExample++; 1650 buildCounterDatafeedStatusExample++;
1651 if (buildCounterDatafeedStatusExample < 3) { 1651 if (buildCounterDatafeedStatusExample < 3) {
1652 o.itemId = "foo"; 1652 o.itemId = "foo";
1653 o.lineNumber = "foo"; 1653 o.lineNumber = "foo";
1654 o.value = "foo"; 1654 o.value = "foo";
1655 } 1655 }
1656 buildCounterDatafeedStatusExample--; 1656 buildCounterDatafeedStatusExample--;
1657 return o; 1657 return o;
1658 } 1658 }
1659 1659
1660 checkDatafeedStatusExample(api.DatafeedStatusExample o) { 1660 checkDatafeedStatusExample(api.DatafeedStatusExample o) {
1661 buildCounterDatafeedStatusExample++; 1661 buildCounterDatafeedStatusExample++;
1662 if (buildCounterDatafeedStatusExample < 3) { 1662 if (buildCounterDatafeedStatusExample < 3) {
1663 unittest.expect(o.itemId, unittest.equals('foo')); 1663 unittest.expect(o.itemId, unittest.equals('foo'));
1664 unittest.expect(o.lineNumber, unittest.equals('foo')); 1664 unittest.expect(o.lineNumber, unittest.equals('foo'));
1665 unittest.expect(o.value, unittest.equals('foo')); 1665 unittest.expect(o.value, unittest.equals('foo'));
1666 } 1666 }
1667 buildCounterDatafeedStatusExample--; 1667 buildCounterDatafeedStatusExample--;
1668 } 1668 }
1669 1669
1670 buildUnnamed545() { 1670 buildUnnamed284() {
1671 var o = new core.List<api.DatafeedsCustomBatchRequestEntry>(); 1671 var o = new core.List<api.DatafeedsCustomBatchRequestEntry>();
1672 o.add(buildDatafeedsCustomBatchRequestEntry()); 1672 o.add(buildDatafeedsCustomBatchRequestEntry());
1673 o.add(buildDatafeedsCustomBatchRequestEntry()); 1673 o.add(buildDatafeedsCustomBatchRequestEntry());
1674 return o; 1674 return o;
1675 } 1675 }
1676 1676
1677 checkUnnamed545(core.List<api.DatafeedsCustomBatchRequestEntry> o) { 1677 checkUnnamed284(core.List<api.DatafeedsCustomBatchRequestEntry> o) {
1678 unittest.expect(o, unittest.hasLength(2)); 1678 unittest.expect(o, unittest.hasLength(2));
1679 checkDatafeedsCustomBatchRequestEntry(o[0]); 1679 checkDatafeedsCustomBatchRequestEntry(o[0]);
1680 checkDatafeedsCustomBatchRequestEntry(o[1]); 1680 checkDatafeedsCustomBatchRequestEntry(o[1]);
1681 } 1681 }
1682 1682
1683 core.int buildCounterDatafeedsCustomBatchRequest = 0; 1683 core.int buildCounterDatafeedsCustomBatchRequest = 0;
1684 buildDatafeedsCustomBatchRequest() { 1684 buildDatafeedsCustomBatchRequest() {
1685 var o = new api.DatafeedsCustomBatchRequest(); 1685 var o = new api.DatafeedsCustomBatchRequest();
1686 buildCounterDatafeedsCustomBatchRequest++; 1686 buildCounterDatafeedsCustomBatchRequest++;
1687 if (buildCounterDatafeedsCustomBatchRequest < 3) { 1687 if (buildCounterDatafeedsCustomBatchRequest < 3) {
1688 o.entries = buildUnnamed545(); 1688 o.entries = buildUnnamed284();
1689 } 1689 }
1690 buildCounterDatafeedsCustomBatchRequest--; 1690 buildCounterDatafeedsCustomBatchRequest--;
1691 return o; 1691 return o;
1692 } 1692 }
1693 1693
1694 checkDatafeedsCustomBatchRequest(api.DatafeedsCustomBatchRequest o) { 1694 checkDatafeedsCustomBatchRequest(api.DatafeedsCustomBatchRequest o) {
1695 buildCounterDatafeedsCustomBatchRequest++; 1695 buildCounterDatafeedsCustomBatchRequest++;
1696 if (buildCounterDatafeedsCustomBatchRequest < 3) { 1696 if (buildCounterDatafeedsCustomBatchRequest < 3) {
1697 checkUnnamed545(o.entries); 1697 checkUnnamed284(o.entries);
1698 } 1698 }
1699 buildCounterDatafeedsCustomBatchRequest--; 1699 buildCounterDatafeedsCustomBatchRequest--;
1700 } 1700 }
1701 1701
1702 core.int buildCounterDatafeedsCustomBatchRequestEntry = 0; 1702 core.int buildCounterDatafeedsCustomBatchRequestEntry = 0;
1703 buildDatafeedsCustomBatchRequestEntry() { 1703 buildDatafeedsCustomBatchRequestEntry() {
1704 var o = new api.DatafeedsCustomBatchRequestEntry(); 1704 var o = new api.DatafeedsCustomBatchRequestEntry();
1705 buildCounterDatafeedsCustomBatchRequestEntry++; 1705 buildCounterDatafeedsCustomBatchRequestEntry++;
1706 if (buildCounterDatafeedsCustomBatchRequestEntry < 3) { 1706 if (buildCounterDatafeedsCustomBatchRequestEntry < 3) {
1707 o.batchId = 42; 1707 o.batchId = 42;
(...skipping 11 matching lines...) Expand all
1719 if (buildCounterDatafeedsCustomBatchRequestEntry < 3) { 1719 if (buildCounterDatafeedsCustomBatchRequestEntry < 3) {
1720 unittest.expect(o.batchId, unittest.equals(42)); 1720 unittest.expect(o.batchId, unittest.equals(42));
1721 checkDatafeed(o.datafeed); 1721 checkDatafeed(o.datafeed);
1722 unittest.expect(o.datafeedId, unittest.equals('foo')); 1722 unittest.expect(o.datafeedId, unittest.equals('foo'));
1723 unittest.expect(o.merchantId, unittest.equals('foo')); 1723 unittest.expect(o.merchantId, unittest.equals('foo'));
1724 unittest.expect(o.method, unittest.equals('foo')); 1724 unittest.expect(o.method, unittest.equals('foo'));
1725 } 1725 }
1726 buildCounterDatafeedsCustomBatchRequestEntry--; 1726 buildCounterDatafeedsCustomBatchRequestEntry--;
1727 } 1727 }
1728 1728
1729 buildUnnamed546() { 1729 buildUnnamed285() {
1730 var o = new core.List<api.DatafeedsCustomBatchResponseEntry>(); 1730 var o = new core.List<api.DatafeedsCustomBatchResponseEntry>();
1731 o.add(buildDatafeedsCustomBatchResponseEntry()); 1731 o.add(buildDatafeedsCustomBatchResponseEntry());
1732 o.add(buildDatafeedsCustomBatchResponseEntry()); 1732 o.add(buildDatafeedsCustomBatchResponseEntry());
1733 return o; 1733 return o;
1734 } 1734 }
1735 1735
1736 checkUnnamed546(core.List<api.DatafeedsCustomBatchResponseEntry> o) { 1736 checkUnnamed285(core.List<api.DatafeedsCustomBatchResponseEntry> o) {
1737 unittest.expect(o, unittest.hasLength(2)); 1737 unittest.expect(o, unittest.hasLength(2));
1738 checkDatafeedsCustomBatchResponseEntry(o[0]); 1738 checkDatafeedsCustomBatchResponseEntry(o[0]);
1739 checkDatafeedsCustomBatchResponseEntry(o[1]); 1739 checkDatafeedsCustomBatchResponseEntry(o[1]);
1740 } 1740 }
1741 1741
1742 core.int buildCounterDatafeedsCustomBatchResponse = 0; 1742 core.int buildCounterDatafeedsCustomBatchResponse = 0;
1743 buildDatafeedsCustomBatchResponse() { 1743 buildDatafeedsCustomBatchResponse() {
1744 var o = new api.DatafeedsCustomBatchResponse(); 1744 var o = new api.DatafeedsCustomBatchResponse();
1745 buildCounterDatafeedsCustomBatchResponse++; 1745 buildCounterDatafeedsCustomBatchResponse++;
1746 if (buildCounterDatafeedsCustomBatchResponse < 3) { 1746 if (buildCounterDatafeedsCustomBatchResponse < 3) {
1747 o.entries = buildUnnamed546(); 1747 o.entries = buildUnnamed285();
1748 o.kind = "foo"; 1748 o.kind = "foo";
1749 } 1749 }
1750 buildCounterDatafeedsCustomBatchResponse--; 1750 buildCounterDatafeedsCustomBatchResponse--;
1751 return o; 1751 return o;
1752 } 1752 }
1753 1753
1754 checkDatafeedsCustomBatchResponse(api.DatafeedsCustomBatchResponse o) { 1754 checkDatafeedsCustomBatchResponse(api.DatafeedsCustomBatchResponse o) {
1755 buildCounterDatafeedsCustomBatchResponse++; 1755 buildCounterDatafeedsCustomBatchResponse++;
1756 if (buildCounterDatafeedsCustomBatchResponse < 3) { 1756 if (buildCounterDatafeedsCustomBatchResponse < 3) {
1757 checkUnnamed546(o.entries); 1757 checkUnnamed285(o.entries);
1758 unittest.expect(o.kind, unittest.equals('foo')); 1758 unittest.expect(o.kind, unittest.equals('foo'));
1759 } 1759 }
1760 buildCounterDatafeedsCustomBatchResponse--; 1760 buildCounterDatafeedsCustomBatchResponse--;
1761 } 1761 }
1762 1762
1763 core.int buildCounterDatafeedsCustomBatchResponseEntry = 0; 1763 core.int buildCounterDatafeedsCustomBatchResponseEntry = 0;
1764 buildDatafeedsCustomBatchResponseEntry() { 1764 buildDatafeedsCustomBatchResponseEntry() {
1765 var o = new api.DatafeedsCustomBatchResponseEntry(); 1765 var o = new api.DatafeedsCustomBatchResponseEntry();
1766 buildCounterDatafeedsCustomBatchResponseEntry++; 1766 buildCounterDatafeedsCustomBatchResponseEntry++;
1767 if (buildCounterDatafeedsCustomBatchResponseEntry < 3) { 1767 if (buildCounterDatafeedsCustomBatchResponseEntry < 3) {
1768 o.batchId = 42; 1768 o.batchId = 42;
1769 o.datafeed = buildDatafeed(); 1769 o.datafeed = buildDatafeed();
1770 o.errors = buildErrors(); 1770 o.errors = buildErrors();
1771 } 1771 }
1772 buildCounterDatafeedsCustomBatchResponseEntry--; 1772 buildCounterDatafeedsCustomBatchResponseEntry--;
1773 return o; 1773 return o;
1774 } 1774 }
1775 1775
1776 checkDatafeedsCustomBatchResponseEntry(api.DatafeedsCustomBatchResponseEntry o) { 1776 checkDatafeedsCustomBatchResponseEntry(api.DatafeedsCustomBatchResponseEntry o) {
1777 buildCounterDatafeedsCustomBatchResponseEntry++; 1777 buildCounterDatafeedsCustomBatchResponseEntry++;
1778 if (buildCounterDatafeedsCustomBatchResponseEntry < 3) { 1778 if (buildCounterDatafeedsCustomBatchResponseEntry < 3) {
1779 unittest.expect(o.batchId, unittest.equals(42)); 1779 unittest.expect(o.batchId, unittest.equals(42));
1780 checkDatafeed(o.datafeed); 1780 checkDatafeed(o.datafeed);
1781 checkErrors(o.errors); 1781 checkErrors(o.errors);
1782 } 1782 }
1783 buildCounterDatafeedsCustomBatchResponseEntry--; 1783 buildCounterDatafeedsCustomBatchResponseEntry--;
1784 } 1784 }
1785 1785
1786 buildUnnamed547() { 1786 buildUnnamed286() {
1787 var o = new core.List<api.Datafeed>(); 1787 var o = new core.List<api.Datafeed>();
1788 o.add(buildDatafeed()); 1788 o.add(buildDatafeed());
1789 o.add(buildDatafeed()); 1789 o.add(buildDatafeed());
1790 return o; 1790 return o;
1791 } 1791 }
1792 1792
1793 checkUnnamed547(core.List<api.Datafeed> o) { 1793 checkUnnamed286(core.List<api.Datafeed> o) {
1794 unittest.expect(o, unittest.hasLength(2)); 1794 unittest.expect(o, unittest.hasLength(2));
1795 checkDatafeed(o[0]); 1795 checkDatafeed(o[0]);
1796 checkDatafeed(o[1]); 1796 checkDatafeed(o[1]);
1797 } 1797 }
1798 1798
1799 core.int buildCounterDatafeedsListResponse = 0; 1799 core.int buildCounterDatafeedsListResponse = 0;
1800 buildDatafeedsListResponse() { 1800 buildDatafeedsListResponse() {
1801 var o = new api.DatafeedsListResponse(); 1801 var o = new api.DatafeedsListResponse();
1802 buildCounterDatafeedsListResponse++; 1802 buildCounterDatafeedsListResponse++;
1803 if (buildCounterDatafeedsListResponse < 3) { 1803 if (buildCounterDatafeedsListResponse < 3) {
1804 o.kind = "foo"; 1804 o.kind = "foo";
1805 o.nextPageToken = "foo"; 1805 o.nextPageToken = "foo";
1806 o.resources = buildUnnamed547(); 1806 o.resources = buildUnnamed286();
1807 } 1807 }
1808 buildCounterDatafeedsListResponse--; 1808 buildCounterDatafeedsListResponse--;
1809 return o; 1809 return o;
1810 } 1810 }
1811 1811
1812 checkDatafeedsListResponse(api.DatafeedsListResponse o) { 1812 checkDatafeedsListResponse(api.DatafeedsListResponse o) {
1813 buildCounterDatafeedsListResponse++; 1813 buildCounterDatafeedsListResponse++;
1814 if (buildCounterDatafeedsListResponse < 3) { 1814 if (buildCounterDatafeedsListResponse < 3) {
1815 unittest.expect(o.kind, unittest.equals('foo')); 1815 unittest.expect(o.kind, unittest.equals('foo'));
1816 unittest.expect(o.nextPageToken, unittest.equals('foo')); 1816 unittest.expect(o.nextPageToken, unittest.equals('foo'));
1817 checkUnnamed547(o.resources); 1817 checkUnnamed286(o.resources);
1818 } 1818 }
1819 buildCounterDatafeedsListResponse--; 1819 buildCounterDatafeedsListResponse--;
1820 } 1820 }
1821 1821
1822 buildUnnamed548() { 1822 buildUnnamed287() {
1823 var o = new core.List<api.DatafeedstatusesCustomBatchRequestEntry>(); 1823 var o = new core.List<api.DatafeedstatusesCustomBatchRequestEntry>();
1824 o.add(buildDatafeedstatusesCustomBatchRequestEntry()); 1824 o.add(buildDatafeedstatusesCustomBatchRequestEntry());
1825 o.add(buildDatafeedstatusesCustomBatchRequestEntry()); 1825 o.add(buildDatafeedstatusesCustomBatchRequestEntry());
1826 return o; 1826 return o;
1827 } 1827 }
1828 1828
1829 checkUnnamed548(core.List<api.DatafeedstatusesCustomBatchRequestEntry> o) { 1829 checkUnnamed287(core.List<api.DatafeedstatusesCustomBatchRequestEntry> o) {
1830 unittest.expect(o, unittest.hasLength(2)); 1830 unittest.expect(o, unittest.hasLength(2));
1831 checkDatafeedstatusesCustomBatchRequestEntry(o[0]); 1831 checkDatafeedstatusesCustomBatchRequestEntry(o[0]);
1832 checkDatafeedstatusesCustomBatchRequestEntry(o[1]); 1832 checkDatafeedstatusesCustomBatchRequestEntry(o[1]);
1833 } 1833 }
1834 1834
1835 core.int buildCounterDatafeedstatusesCustomBatchRequest = 0; 1835 core.int buildCounterDatafeedstatusesCustomBatchRequest = 0;
1836 buildDatafeedstatusesCustomBatchRequest() { 1836 buildDatafeedstatusesCustomBatchRequest() {
1837 var o = new api.DatafeedstatusesCustomBatchRequest(); 1837 var o = new api.DatafeedstatusesCustomBatchRequest();
1838 buildCounterDatafeedstatusesCustomBatchRequest++; 1838 buildCounterDatafeedstatusesCustomBatchRequest++;
1839 if (buildCounterDatafeedstatusesCustomBatchRequest < 3) { 1839 if (buildCounterDatafeedstatusesCustomBatchRequest < 3) {
1840 o.entries = buildUnnamed548(); 1840 o.entries = buildUnnamed287();
1841 } 1841 }
1842 buildCounterDatafeedstatusesCustomBatchRequest--; 1842 buildCounterDatafeedstatusesCustomBatchRequest--;
1843 return o; 1843 return o;
1844 } 1844 }
1845 1845
1846 checkDatafeedstatusesCustomBatchRequest(api.DatafeedstatusesCustomBatchRequest o ) { 1846 checkDatafeedstatusesCustomBatchRequest(api.DatafeedstatusesCustomBatchRequest o ) {
1847 buildCounterDatafeedstatusesCustomBatchRequest++; 1847 buildCounterDatafeedstatusesCustomBatchRequest++;
1848 if (buildCounterDatafeedstatusesCustomBatchRequest < 3) { 1848 if (buildCounterDatafeedstatusesCustomBatchRequest < 3) {
1849 checkUnnamed548(o.entries); 1849 checkUnnamed287(o.entries);
1850 } 1850 }
1851 buildCounterDatafeedstatusesCustomBatchRequest--; 1851 buildCounterDatafeedstatusesCustomBatchRequest--;
1852 } 1852 }
1853 1853
1854 core.int buildCounterDatafeedstatusesCustomBatchRequestEntry = 0; 1854 core.int buildCounterDatafeedstatusesCustomBatchRequestEntry = 0;
1855 buildDatafeedstatusesCustomBatchRequestEntry() { 1855 buildDatafeedstatusesCustomBatchRequestEntry() {
1856 var o = new api.DatafeedstatusesCustomBatchRequestEntry(); 1856 var o = new api.DatafeedstatusesCustomBatchRequestEntry();
1857 buildCounterDatafeedstatusesCustomBatchRequestEntry++; 1857 buildCounterDatafeedstatusesCustomBatchRequestEntry++;
1858 if (buildCounterDatafeedstatusesCustomBatchRequestEntry < 3) { 1858 if (buildCounterDatafeedstatusesCustomBatchRequestEntry < 3) {
1859 o.batchId = 42; 1859 o.batchId = 42;
1860 o.datafeedId = "foo"; 1860 o.datafeedId = "foo";
1861 o.merchantId = "foo"; 1861 o.merchantId = "foo";
1862 o.method = "foo"; 1862 o.method = "foo";
1863 } 1863 }
1864 buildCounterDatafeedstatusesCustomBatchRequestEntry--; 1864 buildCounterDatafeedstatusesCustomBatchRequestEntry--;
1865 return o; 1865 return o;
1866 } 1866 }
1867 1867
1868 checkDatafeedstatusesCustomBatchRequestEntry(api.DatafeedstatusesCustomBatchRequ estEntry o) { 1868 checkDatafeedstatusesCustomBatchRequestEntry(api.DatafeedstatusesCustomBatchRequ estEntry o) {
1869 buildCounterDatafeedstatusesCustomBatchRequestEntry++; 1869 buildCounterDatafeedstatusesCustomBatchRequestEntry++;
1870 if (buildCounterDatafeedstatusesCustomBatchRequestEntry < 3) { 1870 if (buildCounterDatafeedstatusesCustomBatchRequestEntry < 3) {
1871 unittest.expect(o.batchId, unittest.equals(42)); 1871 unittest.expect(o.batchId, unittest.equals(42));
1872 unittest.expect(o.datafeedId, unittest.equals('foo')); 1872 unittest.expect(o.datafeedId, unittest.equals('foo'));
1873 unittest.expect(o.merchantId, unittest.equals('foo')); 1873 unittest.expect(o.merchantId, unittest.equals('foo'));
1874 unittest.expect(o.method, unittest.equals('foo')); 1874 unittest.expect(o.method, unittest.equals('foo'));
1875 } 1875 }
1876 buildCounterDatafeedstatusesCustomBatchRequestEntry--; 1876 buildCounterDatafeedstatusesCustomBatchRequestEntry--;
1877 } 1877 }
1878 1878
1879 buildUnnamed549() { 1879 buildUnnamed288() {
1880 var o = new core.List<api.DatafeedstatusesCustomBatchResponseEntry>(); 1880 var o = new core.List<api.DatafeedstatusesCustomBatchResponseEntry>();
1881 o.add(buildDatafeedstatusesCustomBatchResponseEntry()); 1881 o.add(buildDatafeedstatusesCustomBatchResponseEntry());
1882 o.add(buildDatafeedstatusesCustomBatchResponseEntry()); 1882 o.add(buildDatafeedstatusesCustomBatchResponseEntry());
1883 return o; 1883 return o;
1884 } 1884 }
1885 1885
1886 checkUnnamed549(core.List<api.DatafeedstatusesCustomBatchResponseEntry> o) { 1886 checkUnnamed288(core.List<api.DatafeedstatusesCustomBatchResponseEntry> o) {
1887 unittest.expect(o, unittest.hasLength(2)); 1887 unittest.expect(o, unittest.hasLength(2));
1888 checkDatafeedstatusesCustomBatchResponseEntry(o[0]); 1888 checkDatafeedstatusesCustomBatchResponseEntry(o[0]);
1889 checkDatafeedstatusesCustomBatchResponseEntry(o[1]); 1889 checkDatafeedstatusesCustomBatchResponseEntry(o[1]);
1890 } 1890 }
1891 1891
1892 core.int buildCounterDatafeedstatusesCustomBatchResponse = 0; 1892 core.int buildCounterDatafeedstatusesCustomBatchResponse = 0;
1893 buildDatafeedstatusesCustomBatchResponse() { 1893 buildDatafeedstatusesCustomBatchResponse() {
1894 var o = new api.DatafeedstatusesCustomBatchResponse(); 1894 var o = new api.DatafeedstatusesCustomBatchResponse();
1895 buildCounterDatafeedstatusesCustomBatchResponse++; 1895 buildCounterDatafeedstatusesCustomBatchResponse++;
1896 if (buildCounterDatafeedstatusesCustomBatchResponse < 3) { 1896 if (buildCounterDatafeedstatusesCustomBatchResponse < 3) {
1897 o.entries = buildUnnamed549(); 1897 o.entries = buildUnnamed288();
1898 o.kind = "foo"; 1898 o.kind = "foo";
1899 } 1899 }
1900 buildCounterDatafeedstatusesCustomBatchResponse--; 1900 buildCounterDatafeedstatusesCustomBatchResponse--;
1901 return o; 1901 return o;
1902 } 1902 }
1903 1903
1904 checkDatafeedstatusesCustomBatchResponse(api.DatafeedstatusesCustomBatchResponse o) { 1904 checkDatafeedstatusesCustomBatchResponse(api.DatafeedstatusesCustomBatchResponse o) {
1905 buildCounterDatafeedstatusesCustomBatchResponse++; 1905 buildCounterDatafeedstatusesCustomBatchResponse++;
1906 if (buildCounterDatafeedstatusesCustomBatchResponse < 3) { 1906 if (buildCounterDatafeedstatusesCustomBatchResponse < 3) {
1907 checkUnnamed549(o.entries); 1907 checkUnnamed288(o.entries);
1908 unittest.expect(o.kind, unittest.equals('foo')); 1908 unittest.expect(o.kind, unittest.equals('foo'));
1909 } 1909 }
1910 buildCounterDatafeedstatusesCustomBatchResponse--; 1910 buildCounterDatafeedstatusesCustomBatchResponse--;
1911 } 1911 }
1912 1912
1913 core.int buildCounterDatafeedstatusesCustomBatchResponseEntry = 0; 1913 core.int buildCounterDatafeedstatusesCustomBatchResponseEntry = 0;
1914 buildDatafeedstatusesCustomBatchResponseEntry() { 1914 buildDatafeedstatusesCustomBatchResponseEntry() {
1915 var o = new api.DatafeedstatusesCustomBatchResponseEntry(); 1915 var o = new api.DatafeedstatusesCustomBatchResponseEntry();
1916 buildCounterDatafeedstatusesCustomBatchResponseEntry++; 1916 buildCounterDatafeedstatusesCustomBatchResponseEntry++;
1917 if (buildCounterDatafeedstatusesCustomBatchResponseEntry < 3) { 1917 if (buildCounterDatafeedstatusesCustomBatchResponseEntry < 3) {
1918 o.batchId = 42; 1918 o.batchId = 42;
1919 o.datafeedStatus = buildDatafeedStatus(); 1919 o.datafeedStatus = buildDatafeedStatus();
1920 o.errors = buildErrors(); 1920 o.errors = buildErrors();
1921 } 1921 }
1922 buildCounterDatafeedstatusesCustomBatchResponseEntry--; 1922 buildCounterDatafeedstatusesCustomBatchResponseEntry--;
1923 return o; 1923 return o;
1924 } 1924 }
1925 1925
1926 checkDatafeedstatusesCustomBatchResponseEntry(api.DatafeedstatusesCustomBatchRes ponseEntry o) { 1926 checkDatafeedstatusesCustomBatchResponseEntry(api.DatafeedstatusesCustomBatchRes ponseEntry o) {
1927 buildCounterDatafeedstatusesCustomBatchResponseEntry++; 1927 buildCounterDatafeedstatusesCustomBatchResponseEntry++;
1928 if (buildCounterDatafeedstatusesCustomBatchResponseEntry < 3) { 1928 if (buildCounterDatafeedstatusesCustomBatchResponseEntry < 3) {
1929 unittest.expect(o.batchId, unittest.equals(42)); 1929 unittest.expect(o.batchId, unittest.equals(42));
1930 checkDatafeedStatus(o.datafeedStatus); 1930 checkDatafeedStatus(o.datafeedStatus);
1931 checkErrors(o.errors); 1931 checkErrors(o.errors);
1932 } 1932 }
1933 buildCounterDatafeedstatusesCustomBatchResponseEntry--; 1933 buildCounterDatafeedstatusesCustomBatchResponseEntry--;
1934 } 1934 }
1935 1935
1936 buildUnnamed550() { 1936 buildUnnamed289() {
1937 var o = new core.List<api.DatafeedStatus>(); 1937 var o = new core.List<api.DatafeedStatus>();
1938 o.add(buildDatafeedStatus()); 1938 o.add(buildDatafeedStatus());
1939 o.add(buildDatafeedStatus()); 1939 o.add(buildDatafeedStatus());
1940 return o; 1940 return o;
1941 } 1941 }
1942 1942
1943 checkUnnamed550(core.List<api.DatafeedStatus> o) { 1943 checkUnnamed289(core.List<api.DatafeedStatus> o) {
1944 unittest.expect(o, unittest.hasLength(2)); 1944 unittest.expect(o, unittest.hasLength(2));
1945 checkDatafeedStatus(o[0]); 1945 checkDatafeedStatus(o[0]);
1946 checkDatafeedStatus(o[1]); 1946 checkDatafeedStatus(o[1]);
1947 } 1947 }
1948 1948
1949 core.int buildCounterDatafeedstatusesListResponse = 0; 1949 core.int buildCounterDatafeedstatusesListResponse = 0;
1950 buildDatafeedstatusesListResponse() { 1950 buildDatafeedstatusesListResponse() {
1951 var o = new api.DatafeedstatusesListResponse(); 1951 var o = new api.DatafeedstatusesListResponse();
1952 buildCounterDatafeedstatusesListResponse++; 1952 buildCounterDatafeedstatusesListResponse++;
1953 if (buildCounterDatafeedstatusesListResponse < 3) { 1953 if (buildCounterDatafeedstatusesListResponse < 3) {
1954 o.kind = "foo"; 1954 o.kind = "foo";
1955 o.nextPageToken = "foo"; 1955 o.nextPageToken = "foo";
1956 o.resources = buildUnnamed550(); 1956 o.resources = buildUnnamed289();
1957 } 1957 }
1958 buildCounterDatafeedstatusesListResponse--; 1958 buildCounterDatafeedstatusesListResponse--;
1959 return o; 1959 return o;
1960 } 1960 }
1961 1961
1962 checkDatafeedstatusesListResponse(api.DatafeedstatusesListResponse o) { 1962 checkDatafeedstatusesListResponse(api.DatafeedstatusesListResponse o) {
1963 buildCounterDatafeedstatusesListResponse++; 1963 buildCounterDatafeedstatusesListResponse++;
1964 if (buildCounterDatafeedstatusesListResponse < 3) { 1964 if (buildCounterDatafeedstatusesListResponse < 3) {
1965 unittest.expect(o.kind, unittest.equals('foo')); 1965 unittest.expect(o.kind, unittest.equals('foo'));
1966 unittest.expect(o.nextPageToken, unittest.equals('foo')); 1966 unittest.expect(o.nextPageToken, unittest.equals('foo'));
1967 checkUnnamed550(o.resources); 1967 checkUnnamed289(o.resources);
1968 } 1968 }
1969 buildCounterDatafeedstatusesListResponse--; 1969 buildCounterDatafeedstatusesListResponse--;
1970 } 1970 }
1971 1971
1972 core.int buildCounterDeliveryTime = 0; 1972 core.int buildCounterDeliveryTime = 0;
1973 buildDeliveryTime() { 1973 buildDeliveryTime() {
1974 var o = new api.DeliveryTime(); 1974 var o = new api.DeliveryTime();
1975 buildCounterDeliveryTime++; 1975 buildCounterDeliveryTime++;
1976 if (buildCounterDeliveryTime < 3) { 1976 if (buildCounterDeliveryTime < 3) {
1977 o.maxTransitTimeInDays = 42; 1977 o.maxTransitTimeInDays = 42;
(...skipping 28 matching lines...) Expand all
2006 checkError(api.Error o) { 2006 checkError(api.Error o) {
2007 buildCounterError++; 2007 buildCounterError++;
2008 if (buildCounterError < 3) { 2008 if (buildCounterError < 3) {
2009 unittest.expect(o.domain, unittest.equals('foo')); 2009 unittest.expect(o.domain, unittest.equals('foo'));
2010 unittest.expect(o.message, unittest.equals('foo')); 2010 unittest.expect(o.message, unittest.equals('foo'));
2011 unittest.expect(o.reason, unittest.equals('foo')); 2011 unittest.expect(o.reason, unittest.equals('foo'));
2012 } 2012 }
2013 buildCounterError--; 2013 buildCounterError--;
2014 } 2014 }
2015 2015
2016 buildUnnamed551() { 2016 buildUnnamed290() {
2017 var o = new core.List<api.Error>(); 2017 var o = new core.List<api.Error>();
2018 o.add(buildError()); 2018 o.add(buildError());
2019 o.add(buildError()); 2019 o.add(buildError());
2020 return o; 2020 return o;
2021 } 2021 }
2022 2022
2023 checkUnnamed551(core.List<api.Error> o) { 2023 checkUnnamed290(core.List<api.Error> o) {
2024 unittest.expect(o, unittest.hasLength(2)); 2024 unittest.expect(o, unittest.hasLength(2));
2025 checkError(o[0]); 2025 checkError(o[0]);
2026 checkError(o[1]); 2026 checkError(o[1]);
2027 } 2027 }
2028 2028
2029 core.int buildCounterErrors = 0; 2029 core.int buildCounterErrors = 0;
2030 buildErrors() { 2030 buildErrors() {
2031 var o = new api.Errors(); 2031 var o = new api.Errors();
2032 buildCounterErrors++; 2032 buildCounterErrors++;
2033 if (buildCounterErrors < 3) { 2033 if (buildCounterErrors < 3) {
2034 o.code = 42; 2034 o.code = 42;
2035 o.errors = buildUnnamed551(); 2035 o.errors = buildUnnamed290();
2036 o.message = "foo"; 2036 o.message = "foo";
2037 } 2037 }
2038 buildCounterErrors--; 2038 buildCounterErrors--;
2039 return o; 2039 return o;
2040 } 2040 }
2041 2041
2042 checkErrors(api.Errors o) { 2042 checkErrors(api.Errors o) {
2043 buildCounterErrors++; 2043 buildCounterErrors++;
2044 if (buildCounterErrors < 3) { 2044 if (buildCounterErrors < 3) {
2045 unittest.expect(o.code, unittest.equals(42)); 2045 unittest.expect(o.code, unittest.equals(42));
2046 checkUnnamed551(o.errors); 2046 checkUnnamed290(o.errors);
2047 unittest.expect(o.message, unittest.equals('foo')); 2047 unittest.expect(o.message, unittest.equals('foo'));
2048 } 2048 }
2049 buildCounterErrors--; 2049 buildCounterErrors--;
2050 } 2050 }
2051 2051
2052 buildUnnamed552() { 2052 buildUnnamed291() {
2053 var o = new core.List<api.LocationIdSet>(); 2053 var o = new core.List<api.LocationIdSet>();
2054 o.add(buildLocationIdSet()); 2054 o.add(buildLocationIdSet());
2055 o.add(buildLocationIdSet()); 2055 o.add(buildLocationIdSet());
2056 return o; 2056 return o;
2057 } 2057 }
2058 2058
2059 checkUnnamed552(core.List<api.LocationIdSet> o) { 2059 checkUnnamed291(core.List<api.LocationIdSet> o) {
2060 unittest.expect(o, unittest.hasLength(2)); 2060 unittest.expect(o, unittest.hasLength(2));
2061 checkLocationIdSet(o[0]); 2061 checkLocationIdSet(o[0]);
2062 checkLocationIdSet(o[1]); 2062 checkLocationIdSet(o[1]);
2063 } 2063 }
2064 2064
2065 buildUnnamed553() { 2065 buildUnnamed292() {
2066 var o = new core.List<core.String>(); 2066 var o = new core.List<core.String>();
2067 o.add("foo"); 2067 o.add("foo");
2068 o.add("foo"); 2068 o.add("foo");
2069 return o; 2069 return o;
2070 } 2070 }
2071 2071
2072 checkUnnamed553(core.List<core.String> o) { 2072 checkUnnamed292(core.List<core.String> o) {
2073 unittest.expect(o, unittest.hasLength(2)); 2073 unittest.expect(o, unittest.hasLength(2));
2074 unittest.expect(o[0], unittest.equals('foo')); 2074 unittest.expect(o[0], unittest.equals('foo'));
2075 unittest.expect(o[1], unittest.equals('foo')); 2075 unittest.expect(o[1], unittest.equals('foo'));
2076 } 2076 }
2077 2077
2078 buildUnnamed554() { 2078 buildUnnamed293() {
2079 var o = new core.List<core.String>(); 2079 var o = new core.List<core.String>();
2080 o.add("foo"); 2080 o.add("foo");
2081 o.add("foo"); 2081 o.add("foo");
2082 return o; 2082 return o;
2083 } 2083 }
2084 2084
2085 checkUnnamed554(core.List<core.String> o) { 2085 checkUnnamed293(core.List<core.String> o) {
2086 unittest.expect(o, unittest.hasLength(2)); 2086 unittest.expect(o, unittest.hasLength(2));
2087 unittest.expect(o[0], unittest.equals('foo')); 2087 unittest.expect(o[0], unittest.equals('foo'));
2088 unittest.expect(o[1], unittest.equals('foo')); 2088 unittest.expect(o[1], unittest.equals('foo'));
2089 } 2089 }
2090 2090
2091 buildUnnamed555() { 2091 buildUnnamed294() {
2092 var o = new core.List<api.Price>(); 2092 var o = new core.List<api.Price>();
2093 o.add(buildPrice()); 2093 o.add(buildPrice());
2094 o.add(buildPrice()); 2094 o.add(buildPrice());
2095 return o; 2095 return o;
2096 } 2096 }
2097 2097
2098 checkUnnamed555(core.List<api.Price> o) { 2098 checkUnnamed294(core.List<api.Price> o) {
2099 unittest.expect(o, unittest.hasLength(2)); 2099 unittest.expect(o, unittest.hasLength(2));
2100 checkPrice(o[0]); 2100 checkPrice(o[0]);
2101 checkPrice(o[1]); 2101 checkPrice(o[1]);
2102 } 2102 }
2103 2103
2104 buildUnnamed556() { 2104 buildUnnamed295() {
2105 var o = new core.List<api.Weight>(); 2105 var o = new core.List<api.Weight>();
2106 o.add(buildWeight()); 2106 o.add(buildWeight());
2107 o.add(buildWeight()); 2107 o.add(buildWeight());
2108 return o; 2108 return o;
2109 } 2109 }
2110 2110
2111 checkUnnamed556(core.List<api.Weight> o) { 2111 checkUnnamed295(core.List<api.Weight> o) {
2112 unittest.expect(o, unittest.hasLength(2)); 2112 unittest.expect(o, unittest.hasLength(2));
2113 checkWeight(o[0]); 2113 checkWeight(o[0]);
2114 checkWeight(o[1]); 2114 checkWeight(o[1]);
2115 } 2115 }
2116 2116
2117 core.int buildCounterHeaders = 0; 2117 core.int buildCounterHeaders = 0;
2118 buildHeaders() { 2118 buildHeaders() {
2119 var o = new api.Headers(); 2119 var o = new api.Headers();
2120 buildCounterHeaders++; 2120 buildCounterHeaders++;
2121 if (buildCounterHeaders < 3) { 2121 if (buildCounterHeaders < 3) {
2122 o.locations = buildUnnamed552(); 2122 o.locations = buildUnnamed291();
2123 o.numberOfItems = buildUnnamed553(); 2123 o.numberOfItems = buildUnnamed292();
2124 o.postalCodeGroupNames = buildUnnamed554(); 2124 o.postalCodeGroupNames = buildUnnamed293();
2125 o.prices = buildUnnamed555(); 2125 o.prices = buildUnnamed294();
2126 o.weights = buildUnnamed556(); 2126 o.weights = buildUnnamed295();
2127 } 2127 }
2128 buildCounterHeaders--; 2128 buildCounterHeaders--;
2129 return o; 2129 return o;
2130 } 2130 }
2131 2131
2132 checkHeaders(api.Headers o) { 2132 checkHeaders(api.Headers o) {
2133 buildCounterHeaders++; 2133 buildCounterHeaders++;
2134 if (buildCounterHeaders < 3) { 2134 if (buildCounterHeaders < 3) {
2135 checkUnnamed552(o.locations); 2135 checkUnnamed291(o.locations);
2136 checkUnnamed553(o.numberOfItems); 2136 checkUnnamed292(o.numberOfItems);
2137 checkUnnamed554(o.postalCodeGroupNames); 2137 checkUnnamed293(o.postalCodeGroupNames);
2138 checkUnnamed555(o.prices); 2138 checkUnnamed294(o.prices);
2139 checkUnnamed556(o.weights); 2139 checkUnnamed295(o.weights);
2140 } 2140 }
2141 buildCounterHeaders--; 2141 buildCounterHeaders--;
2142 } 2142 }
2143 2143
2144 core.int buildCounterInstallment = 0; 2144 core.int buildCounterInstallment = 0;
2145 buildInstallment() { 2145 buildInstallment() {
2146 var o = new api.Installment(); 2146 var o = new api.Installment();
2147 buildCounterInstallment++; 2147 buildCounterInstallment++;
2148 if (buildCounterInstallment < 3) { 2148 if (buildCounterInstallment < 3) {
2149 o.amount = buildPrice(); 2149 o.amount = buildPrice();
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
2192 checkInventoryPickup(o.pickup); 2192 checkInventoryPickup(o.pickup);
2193 checkPrice(o.price); 2193 checkPrice(o.price);
2194 unittest.expect(o.quantity, unittest.equals(42)); 2194 unittest.expect(o.quantity, unittest.equals(42));
2195 checkPrice(o.salePrice); 2195 checkPrice(o.salePrice);
2196 unittest.expect(o.salePriceEffectiveDate, unittest.equals('foo')); 2196 unittest.expect(o.salePriceEffectiveDate, unittest.equals('foo'));
2197 unittest.expect(o.sellOnGoogleQuantity, unittest.equals(42)); 2197 unittest.expect(o.sellOnGoogleQuantity, unittest.equals(42));
2198 } 2198 }
2199 buildCounterInventory--; 2199 buildCounterInventory--;
2200 } 2200 }
2201 2201
2202 buildUnnamed557() { 2202 buildUnnamed296() {
2203 var o = new core.List<api.InventoryCustomBatchRequestEntry>(); 2203 var o = new core.List<api.InventoryCustomBatchRequestEntry>();
2204 o.add(buildInventoryCustomBatchRequestEntry()); 2204 o.add(buildInventoryCustomBatchRequestEntry());
2205 o.add(buildInventoryCustomBatchRequestEntry()); 2205 o.add(buildInventoryCustomBatchRequestEntry());
2206 return o; 2206 return o;
2207 } 2207 }
2208 2208
2209 checkUnnamed557(core.List<api.InventoryCustomBatchRequestEntry> o) { 2209 checkUnnamed296(core.List<api.InventoryCustomBatchRequestEntry> o) {
2210 unittest.expect(o, unittest.hasLength(2)); 2210 unittest.expect(o, unittest.hasLength(2));
2211 checkInventoryCustomBatchRequestEntry(o[0]); 2211 checkInventoryCustomBatchRequestEntry(o[0]);
2212 checkInventoryCustomBatchRequestEntry(o[1]); 2212 checkInventoryCustomBatchRequestEntry(o[1]);
2213 } 2213 }
2214 2214
2215 core.int buildCounterInventoryCustomBatchRequest = 0; 2215 core.int buildCounterInventoryCustomBatchRequest = 0;
2216 buildInventoryCustomBatchRequest() { 2216 buildInventoryCustomBatchRequest() {
2217 var o = new api.InventoryCustomBatchRequest(); 2217 var o = new api.InventoryCustomBatchRequest();
2218 buildCounterInventoryCustomBatchRequest++; 2218 buildCounterInventoryCustomBatchRequest++;
2219 if (buildCounterInventoryCustomBatchRequest < 3) { 2219 if (buildCounterInventoryCustomBatchRequest < 3) {
2220 o.entries = buildUnnamed557(); 2220 o.entries = buildUnnamed296();
2221 } 2221 }
2222 buildCounterInventoryCustomBatchRequest--; 2222 buildCounterInventoryCustomBatchRequest--;
2223 return o; 2223 return o;
2224 } 2224 }
2225 2225
2226 checkInventoryCustomBatchRequest(api.InventoryCustomBatchRequest o) { 2226 checkInventoryCustomBatchRequest(api.InventoryCustomBatchRequest o) {
2227 buildCounterInventoryCustomBatchRequest++; 2227 buildCounterInventoryCustomBatchRequest++;
2228 if (buildCounterInventoryCustomBatchRequest < 3) { 2228 if (buildCounterInventoryCustomBatchRequest < 3) {
2229 checkUnnamed557(o.entries); 2229 checkUnnamed296(o.entries);
2230 } 2230 }
2231 buildCounterInventoryCustomBatchRequest--; 2231 buildCounterInventoryCustomBatchRequest--;
2232 } 2232 }
2233 2233
2234 core.int buildCounterInventoryCustomBatchRequestEntry = 0; 2234 core.int buildCounterInventoryCustomBatchRequestEntry = 0;
2235 buildInventoryCustomBatchRequestEntry() { 2235 buildInventoryCustomBatchRequestEntry() {
2236 var o = new api.InventoryCustomBatchRequestEntry(); 2236 var o = new api.InventoryCustomBatchRequestEntry();
2237 buildCounterInventoryCustomBatchRequestEntry++; 2237 buildCounterInventoryCustomBatchRequestEntry++;
2238 if (buildCounterInventoryCustomBatchRequestEntry < 3) { 2238 if (buildCounterInventoryCustomBatchRequestEntry < 3) {
2239 o.batchId = 42; 2239 o.batchId = 42;
(...skipping 11 matching lines...) Expand all
2251 if (buildCounterInventoryCustomBatchRequestEntry < 3) { 2251 if (buildCounterInventoryCustomBatchRequestEntry < 3) {
2252 unittest.expect(o.batchId, unittest.equals(42)); 2252 unittest.expect(o.batchId, unittest.equals(42));
2253 checkInventory(o.inventory); 2253 checkInventory(o.inventory);
2254 unittest.expect(o.merchantId, unittest.equals('foo')); 2254 unittest.expect(o.merchantId, unittest.equals('foo'));
2255 unittest.expect(o.productId, unittest.equals('foo')); 2255 unittest.expect(o.productId, unittest.equals('foo'));
2256 unittest.expect(o.storeCode, unittest.equals('foo')); 2256 unittest.expect(o.storeCode, unittest.equals('foo'));
2257 } 2257 }
2258 buildCounterInventoryCustomBatchRequestEntry--; 2258 buildCounterInventoryCustomBatchRequestEntry--;
2259 } 2259 }
2260 2260
2261 buildUnnamed558() { 2261 buildUnnamed297() {
2262 var o = new core.List<api.InventoryCustomBatchResponseEntry>(); 2262 var o = new core.List<api.InventoryCustomBatchResponseEntry>();
2263 o.add(buildInventoryCustomBatchResponseEntry()); 2263 o.add(buildInventoryCustomBatchResponseEntry());
2264 o.add(buildInventoryCustomBatchResponseEntry()); 2264 o.add(buildInventoryCustomBatchResponseEntry());
2265 return o; 2265 return o;
2266 } 2266 }
2267 2267
2268 checkUnnamed558(core.List<api.InventoryCustomBatchResponseEntry> o) { 2268 checkUnnamed297(core.List<api.InventoryCustomBatchResponseEntry> o) {
2269 unittest.expect(o, unittest.hasLength(2)); 2269 unittest.expect(o, unittest.hasLength(2));
2270 checkInventoryCustomBatchResponseEntry(o[0]); 2270 checkInventoryCustomBatchResponseEntry(o[0]);
2271 checkInventoryCustomBatchResponseEntry(o[1]); 2271 checkInventoryCustomBatchResponseEntry(o[1]);
2272 } 2272 }
2273 2273
2274 core.int buildCounterInventoryCustomBatchResponse = 0; 2274 core.int buildCounterInventoryCustomBatchResponse = 0;
2275 buildInventoryCustomBatchResponse() { 2275 buildInventoryCustomBatchResponse() {
2276 var o = new api.InventoryCustomBatchResponse(); 2276 var o = new api.InventoryCustomBatchResponse();
2277 buildCounterInventoryCustomBatchResponse++; 2277 buildCounterInventoryCustomBatchResponse++;
2278 if (buildCounterInventoryCustomBatchResponse < 3) { 2278 if (buildCounterInventoryCustomBatchResponse < 3) {
2279 o.entries = buildUnnamed558(); 2279 o.entries = buildUnnamed297();
2280 o.kind = "foo"; 2280 o.kind = "foo";
2281 } 2281 }
2282 buildCounterInventoryCustomBatchResponse--; 2282 buildCounterInventoryCustomBatchResponse--;
2283 return o; 2283 return o;
2284 } 2284 }
2285 2285
2286 checkInventoryCustomBatchResponse(api.InventoryCustomBatchResponse o) { 2286 checkInventoryCustomBatchResponse(api.InventoryCustomBatchResponse o) {
2287 buildCounterInventoryCustomBatchResponse++; 2287 buildCounterInventoryCustomBatchResponse++;
2288 if (buildCounterInventoryCustomBatchResponse < 3) { 2288 if (buildCounterInventoryCustomBatchResponse < 3) {
2289 checkUnnamed558(o.entries); 2289 checkUnnamed297(o.entries);
2290 unittest.expect(o.kind, unittest.equals('foo')); 2290 unittest.expect(o.kind, unittest.equals('foo'));
2291 } 2291 }
2292 buildCounterInventoryCustomBatchResponse--; 2292 buildCounterInventoryCustomBatchResponse--;
2293 } 2293 }
2294 2294
2295 core.int buildCounterInventoryCustomBatchResponseEntry = 0; 2295 core.int buildCounterInventoryCustomBatchResponseEntry = 0;
2296 buildInventoryCustomBatchResponseEntry() { 2296 buildInventoryCustomBatchResponseEntry() {
2297 var o = new api.InventoryCustomBatchResponseEntry(); 2297 var o = new api.InventoryCustomBatchResponseEntry();
2298 buildCounterInventoryCustomBatchResponseEntry++; 2298 buildCounterInventoryCustomBatchResponseEntry++;
2299 if (buildCounterInventoryCustomBatchResponseEntry < 3) { 2299 if (buildCounterInventoryCustomBatchResponseEntry < 3) {
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
2383 } 2383 }
2384 2384
2385 checkInventorySetResponse(api.InventorySetResponse o) { 2385 checkInventorySetResponse(api.InventorySetResponse o) {
2386 buildCounterInventorySetResponse++; 2386 buildCounterInventorySetResponse++;
2387 if (buildCounterInventorySetResponse < 3) { 2387 if (buildCounterInventorySetResponse < 3) {
2388 unittest.expect(o.kind, unittest.equals('foo')); 2388 unittest.expect(o.kind, unittest.equals('foo'));
2389 } 2389 }
2390 buildCounterInventorySetResponse--; 2390 buildCounterInventorySetResponse--;
2391 } 2391 }
2392 2392
2393 buildUnnamed559() { 2393 buildUnnamed298() {
2394 var o = new core.List<core.String>(); 2394 var o = new core.List<core.String>();
2395 o.add("foo"); 2395 o.add("foo");
2396 o.add("foo"); 2396 o.add("foo");
2397 return o; 2397 return o;
2398 } 2398 }
2399 2399
2400 checkUnnamed559(core.List<core.String> o) { 2400 checkUnnamed298(core.List<core.String> o) {
2401 unittest.expect(o, unittest.hasLength(2)); 2401 unittest.expect(o, unittest.hasLength(2));
2402 unittest.expect(o[0], unittest.equals('foo')); 2402 unittest.expect(o[0], unittest.equals('foo'));
2403 unittest.expect(o[1], unittest.equals('foo')); 2403 unittest.expect(o[1], unittest.equals('foo'));
2404 } 2404 }
2405 2405
2406 core.int buildCounterLocationIdSet = 0; 2406 core.int buildCounterLocationIdSet = 0;
2407 buildLocationIdSet() { 2407 buildLocationIdSet() {
2408 var o = new api.LocationIdSet(); 2408 var o = new api.LocationIdSet();
2409 buildCounterLocationIdSet++; 2409 buildCounterLocationIdSet++;
2410 if (buildCounterLocationIdSet < 3) { 2410 if (buildCounterLocationIdSet < 3) {
2411 o.locationIds = buildUnnamed559(); 2411 o.locationIds = buildUnnamed298();
2412 } 2412 }
2413 buildCounterLocationIdSet--; 2413 buildCounterLocationIdSet--;
2414 return o; 2414 return o;
2415 } 2415 }
2416 2416
2417 checkLocationIdSet(api.LocationIdSet o) { 2417 checkLocationIdSet(api.LocationIdSet o) {
2418 buildCounterLocationIdSet++; 2418 buildCounterLocationIdSet++;
2419 if (buildCounterLocationIdSet < 3) { 2419 if (buildCounterLocationIdSet < 3) {
2420 checkUnnamed559(o.locationIds); 2420 checkUnnamed298(o.locationIds);
2421 } 2421 }
2422 buildCounterLocationIdSet--; 2422 buildCounterLocationIdSet--;
2423 } 2423 }
2424 2424
2425 core.int buildCounterLoyaltyPoints = 0; 2425 core.int buildCounterLoyaltyPoints = 0;
2426 buildLoyaltyPoints() { 2426 buildLoyaltyPoints() {
2427 var o = new api.LoyaltyPoints(); 2427 var o = new api.LoyaltyPoints();
2428 buildCounterLoyaltyPoints++; 2428 buildCounterLoyaltyPoints++;
2429 if (buildCounterLoyaltyPoints < 3) { 2429 if (buildCounterLoyaltyPoints < 3) {
2430 o.name = "foo"; 2430 o.name = "foo";
2431 o.pointsValue = "foo"; 2431 o.pointsValue = "foo";
2432 o.ratio = 42.0; 2432 o.ratio = 42.0;
2433 } 2433 }
2434 buildCounterLoyaltyPoints--; 2434 buildCounterLoyaltyPoints--;
2435 return o; 2435 return o;
2436 } 2436 }
2437 2437
2438 checkLoyaltyPoints(api.LoyaltyPoints o) { 2438 checkLoyaltyPoints(api.LoyaltyPoints o) {
2439 buildCounterLoyaltyPoints++; 2439 buildCounterLoyaltyPoints++;
2440 if (buildCounterLoyaltyPoints < 3) { 2440 if (buildCounterLoyaltyPoints < 3) {
2441 unittest.expect(o.name, unittest.equals('foo')); 2441 unittest.expect(o.name, unittest.equals('foo'));
2442 unittest.expect(o.pointsValue, unittest.equals('foo')); 2442 unittest.expect(o.pointsValue, unittest.equals('foo'));
2443 unittest.expect(o.ratio, unittest.equals(42.0)); 2443 unittest.expect(o.ratio, unittest.equals(42.0));
2444 } 2444 }
2445 buildCounterLoyaltyPoints--; 2445 buildCounterLoyaltyPoints--;
2446 } 2446 }
2447 2447
2448 buildUnnamed560() { 2448 buildUnnamed299() {
2449 var o = new core.List<api.OrderLineItem>(); 2449 var o = new core.List<api.OrderLineItem>();
2450 o.add(buildOrderLineItem()); 2450 o.add(buildOrderLineItem());
2451 o.add(buildOrderLineItem()); 2451 o.add(buildOrderLineItem());
2452 return o; 2452 return o;
2453 } 2453 }
2454 2454
2455 checkUnnamed560(core.List<api.OrderLineItem> o) { 2455 checkUnnamed299(core.List<api.OrderLineItem> o) {
2456 unittest.expect(o, unittest.hasLength(2)); 2456 unittest.expect(o, unittest.hasLength(2));
2457 checkOrderLineItem(o[0]); 2457 checkOrderLineItem(o[0]);
2458 checkOrderLineItem(o[1]); 2458 checkOrderLineItem(o[1]);
2459 } 2459 }
2460 2460
2461 buildUnnamed561() { 2461 buildUnnamed300() {
2462 var o = new core.List<api.OrderPromotion>(); 2462 var o = new core.List<api.OrderPromotion>();
2463 o.add(buildOrderPromotion()); 2463 o.add(buildOrderPromotion());
2464 o.add(buildOrderPromotion()); 2464 o.add(buildOrderPromotion());
2465 return o; 2465 return o;
2466 } 2466 }
2467 2467
2468 checkUnnamed561(core.List<api.OrderPromotion> o) { 2468 checkUnnamed300(core.List<api.OrderPromotion> o) {
2469 unittest.expect(o, unittest.hasLength(2)); 2469 unittest.expect(o, unittest.hasLength(2));
2470 checkOrderPromotion(o[0]); 2470 checkOrderPromotion(o[0]);
2471 checkOrderPromotion(o[1]); 2471 checkOrderPromotion(o[1]);
2472 } 2472 }
2473 2473
2474 buildUnnamed562() { 2474 buildUnnamed301() {
2475 var o = new core.List<api.OrderRefund>(); 2475 var o = new core.List<api.OrderRefund>();
2476 o.add(buildOrderRefund()); 2476 o.add(buildOrderRefund());
2477 o.add(buildOrderRefund()); 2477 o.add(buildOrderRefund());
2478 return o; 2478 return o;
2479 } 2479 }
2480 2480
2481 checkUnnamed562(core.List<api.OrderRefund> o) { 2481 checkUnnamed301(core.List<api.OrderRefund> o) {
2482 unittest.expect(o, unittest.hasLength(2)); 2482 unittest.expect(o, unittest.hasLength(2));
2483 checkOrderRefund(o[0]); 2483 checkOrderRefund(o[0]);
2484 checkOrderRefund(o[1]); 2484 checkOrderRefund(o[1]);
2485 } 2485 }
2486 2486
2487 buildUnnamed563() { 2487 buildUnnamed302() {
2488 var o = new core.List<api.OrderShipment>(); 2488 var o = new core.List<api.OrderShipment>();
2489 o.add(buildOrderShipment()); 2489 o.add(buildOrderShipment());
2490 o.add(buildOrderShipment()); 2490 o.add(buildOrderShipment());
2491 return o; 2491 return o;
2492 } 2492 }
2493 2493
2494 checkUnnamed563(core.List<api.OrderShipment> o) { 2494 checkUnnamed302(core.List<api.OrderShipment> o) {
2495 unittest.expect(o, unittest.hasLength(2)); 2495 unittest.expect(o, unittest.hasLength(2));
2496 checkOrderShipment(o[0]); 2496 checkOrderShipment(o[0]);
2497 checkOrderShipment(o[1]); 2497 checkOrderShipment(o[1]);
2498 } 2498 }
2499 2499
2500 core.int buildCounterOrder = 0; 2500 core.int buildCounterOrder = 0;
2501 buildOrder() { 2501 buildOrder() {
2502 var o = new api.Order(); 2502 var o = new api.Order();
2503 buildCounterOrder++; 2503 buildCounterOrder++;
2504 if (buildCounterOrder < 3) { 2504 if (buildCounterOrder < 3) {
2505 o.acknowledged = true; 2505 o.acknowledged = true;
2506 o.channelType = "foo"; 2506 o.channelType = "foo";
2507 o.customer = buildOrderCustomer(); 2507 o.customer = buildOrderCustomer();
2508 o.deliveryDetails = buildOrderDeliveryDetails(); 2508 o.deliveryDetails = buildOrderDeliveryDetails();
2509 o.id = "foo"; 2509 o.id = "foo";
2510 o.kind = "foo"; 2510 o.kind = "foo";
2511 o.lineItems = buildUnnamed560(); 2511 o.lineItems = buildUnnamed299();
2512 o.merchantId = "foo"; 2512 o.merchantId = "foo";
2513 o.merchantOrderId = "foo"; 2513 o.merchantOrderId = "foo";
2514 o.netAmount = buildPrice(); 2514 o.netAmount = buildPrice();
2515 o.paymentMethod = buildOrderPaymentMethod(); 2515 o.paymentMethod = buildOrderPaymentMethod();
2516 o.paymentStatus = "foo"; 2516 o.paymentStatus = "foo";
2517 o.placedDate = "foo"; 2517 o.placedDate = "foo";
2518 o.promotions = buildUnnamed561(); 2518 o.promotions = buildUnnamed300();
2519 o.refunds = buildUnnamed562(); 2519 o.refunds = buildUnnamed301();
2520 o.shipments = buildUnnamed563(); 2520 o.shipments = buildUnnamed302();
2521 o.shippingCost = buildPrice(); 2521 o.shippingCost = buildPrice();
2522 o.shippingCostTax = buildPrice(); 2522 o.shippingCostTax = buildPrice();
2523 o.shippingOption = "foo"; 2523 o.shippingOption = "foo";
2524 o.status = "foo"; 2524 o.status = "foo";
2525 } 2525 }
2526 buildCounterOrder--; 2526 buildCounterOrder--;
2527 return o; 2527 return o;
2528 } 2528 }
2529 2529
2530 checkOrder(api.Order o) { 2530 checkOrder(api.Order o) {
2531 buildCounterOrder++; 2531 buildCounterOrder++;
2532 if (buildCounterOrder < 3) { 2532 if (buildCounterOrder < 3) {
2533 unittest.expect(o.acknowledged, unittest.isTrue); 2533 unittest.expect(o.acknowledged, unittest.isTrue);
2534 unittest.expect(o.channelType, unittest.equals('foo')); 2534 unittest.expect(o.channelType, unittest.equals('foo'));
2535 checkOrderCustomer(o.customer); 2535 checkOrderCustomer(o.customer);
2536 checkOrderDeliveryDetails(o.deliveryDetails); 2536 checkOrderDeliveryDetails(o.deliveryDetails);
2537 unittest.expect(o.id, unittest.equals('foo')); 2537 unittest.expect(o.id, unittest.equals('foo'));
2538 unittest.expect(o.kind, unittest.equals('foo')); 2538 unittest.expect(o.kind, unittest.equals('foo'));
2539 checkUnnamed560(o.lineItems); 2539 checkUnnamed299(o.lineItems);
2540 unittest.expect(o.merchantId, unittest.equals('foo')); 2540 unittest.expect(o.merchantId, unittest.equals('foo'));
2541 unittest.expect(o.merchantOrderId, unittest.equals('foo')); 2541 unittest.expect(o.merchantOrderId, unittest.equals('foo'));
2542 checkPrice(o.netAmount); 2542 checkPrice(o.netAmount);
2543 checkOrderPaymentMethod(o.paymentMethod); 2543 checkOrderPaymentMethod(o.paymentMethod);
2544 unittest.expect(o.paymentStatus, unittest.equals('foo')); 2544 unittest.expect(o.paymentStatus, unittest.equals('foo'));
2545 unittest.expect(o.placedDate, unittest.equals('foo')); 2545 unittest.expect(o.placedDate, unittest.equals('foo'));
2546 checkUnnamed561(o.promotions); 2546 checkUnnamed300(o.promotions);
2547 checkUnnamed562(o.refunds); 2547 checkUnnamed301(o.refunds);
2548 checkUnnamed563(o.shipments); 2548 checkUnnamed302(o.shipments);
2549 checkPrice(o.shippingCost); 2549 checkPrice(o.shippingCost);
2550 checkPrice(o.shippingCostTax); 2550 checkPrice(o.shippingCostTax);
2551 unittest.expect(o.shippingOption, unittest.equals('foo')); 2551 unittest.expect(o.shippingOption, unittest.equals('foo'));
2552 unittest.expect(o.status, unittest.equals('foo')); 2552 unittest.expect(o.status, unittest.equals('foo'));
2553 } 2553 }
2554 buildCounterOrder--; 2554 buildCounterOrder--;
2555 } 2555 }
2556 2556
2557 buildUnnamed564() { 2557 buildUnnamed303() {
2558 var o = new core.List<core.String>(); 2558 var o = new core.List<core.String>();
2559 o.add("foo"); 2559 o.add("foo");
2560 o.add("foo"); 2560 o.add("foo");
2561 return o; 2561 return o;
2562 } 2562 }
2563 2563
2564 checkUnnamed564(core.List<core.String> o) { 2564 checkUnnamed303(core.List<core.String> o) {
2565 unittest.expect(o, unittest.hasLength(2)); 2565 unittest.expect(o, unittest.hasLength(2));
2566 unittest.expect(o[0], unittest.equals('foo')); 2566 unittest.expect(o[0], unittest.equals('foo'));
2567 unittest.expect(o[1], unittest.equals('foo')); 2567 unittest.expect(o[1], unittest.equals('foo'));
2568 } 2568 }
2569 2569
2570 buildUnnamed565() { 2570 buildUnnamed304() {
2571 var o = new core.List<core.String>(); 2571 var o = new core.List<core.String>();
2572 o.add("foo"); 2572 o.add("foo");
2573 o.add("foo"); 2573 o.add("foo");
2574 return o; 2574 return o;
2575 } 2575 }
2576 2576
2577 checkUnnamed565(core.List<core.String> o) { 2577 checkUnnamed304(core.List<core.String> o) {
2578 unittest.expect(o, unittest.hasLength(2)); 2578 unittest.expect(o, unittest.hasLength(2));
2579 unittest.expect(o[0], unittest.equals('foo')); 2579 unittest.expect(o[0], unittest.equals('foo'));
2580 unittest.expect(o[1], unittest.equals('foo')); 2580 unittest.expect(o[1], unittest.equals('foo'));
2581 } 2581 }
2582 2582
2583 core.int buildCounterOrderAddress = 0; 2583 core.int buildCounterOrderAddress = 0;
2584 buildOrderAddress() { 2584 buildOrderAddress() {
2585 var o = new api.OrderAddress(); 2585 var o = new api.OrderAddress();
2586 buildCounterOrderAddress++; 2586 buildCounterOrderAddress++;
2587 if (buildCounterOrderAddress < 3) { 2587 if (buildCounterOrderAddress < 3) {
2588 o.country = "foo"; 2588 o.country = "foo";
2589 o.fullAddress = buildUnnamed564(); 2589 o.fullAddress = buildUnnamed303();
2590 o.isPostOfficeBox = true; 2590 o.isPostOfficeBox = true;
2591 o.locality = "foo"; 2591 o.locality = "foo";
2592 o.postalCode = "foo"; 2592 o.postalCode = "foo";
2593 o.recipientName = "foo"; 2593 o.recipientName = "foo";
2594 o.region = "foo"; 2594 o.region = "foo";
2595 o.streetAddress = buildUnnamed565(); 2595 o.streetAddress = buildUnnamed304();
2596 } 2596 }
2597 buildCounterOrderAddress--; 2597 buildCounterOrderAddress--;
2598 return o; 2598 return o;
2599 } 2599 }
2600 2600
2601 checkOrderAddress(api.OrderAddress o) { 2601 checkOrderAddress(api.OrderAddress o) {
2602 buildCounterOrderAddress++; 2602 buildCounterOrderAddress++;
2603 if (buildCounterOrderAddress < 3) { 2603 if (buildCounterOrderAddress < 3) {
2604 unittest.expect(o.country, unittest.equals('foo')); 2604 unittest.expect(o.country, unittest.equals('foo'));
2605 checkUnnamed564(o.fullAddress); 2605 checkUnnamed303(o.fullAddress);
2606 unittest.expect(o.isPostOfficeBox, unittest.isTrue); 2606 unittest.expect(o.isPostOfficeBox, unittest.isTrue);
2607 unittest.expect(o.locality, unittest.equals('foo')); 2607 unittest.expect(o.locality, unittest.equals('foo'));
2608 unittest.expect(o.postalCode, unittest.equals('foo')); 2608 unittest.expect(o.postalCode, unittest.equals('foo'));
2609 unittest.expect(o.recipientName, unittest.equals('foo')); 2609 unittest.expect(o.recipientName, unittest.equals('foo'));
2610 unittest.expect(o.region, unittest.equals('foo')); 2610 unittest.expect(o.region, unittest.equals('foo'));
2611 checkUnnamed565(o.streetAddress); 2611 checkUnnamed304(o.streetAddress);
2612 } 2612 }
2613 buildCounterOrderAddress--; 2613 buildCounterOrderAddress--;
2614 } 2614 }
2615 2615
2616 core.int buildCounterOrderCancellation = 0; 2616 core.int buildCounterOrderCancellation = 0;
2617 buildOrderCancellation() { 2617 buildOrderCancellation() {
2618 var o = new api.OrderCancellation(); 2618 var o = new api.OrderCancellation();
2619 buildCounterOrderCancellation++; 2619 buildCounterOrderCancellation++;
2620 if (buildCounterOrderCancellation < 3) { 2620 if (buildCounterOrderCancellation < 3) {
2621 o.actor = "foo"; 2621 o.actor = "foo";
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
2677 2677
2678 checkOrderDeliveryDetails(api.OrderDeliveryDetails o) { 2678 checkOrderDeliveryDetails(api.OrderDeliveryDetails o) {
2679 buildCounterOrderDeliveryDetails++; 2679 buildCounterOrderDeliveryDetails++;
2680 if (buildCounterOrderDeliveryDetails < 3) { 2680 if (buildCounterOrderDeliveryDetails < 3) {
2681 checkOrderAddress(o.address); 2681 checkOrderAddress(o.address);
2682 unittest.expect(o.phoneNumber, unittest.equals('foo')); 2682 unittest.expect(o.phoneNumber, unittest.equals('foo'));
2683 } 2683 }
2684 buildCounterOrderDeliveryDetails--; 2684 buildCounterOrderDeliveryDetails--;
2685 } 2685 }
2686 2686
2687 buildUnnamed566() { 2687 buildUnnamed305() {
2688 var o = new core.List<api.OrderCancellation>(); 2688 var o = new core.List<api.OrderCancellation>();
2689 o.add(buildOrderCancellation()); 2689 o.add(buildOrderCancellation());
2690 o.add(buildOrderCancellation()); 2690 o.add(buildOrderCancellation());
2691 return o; 2691 return o;
2692 } 2692 }
2693 2693
2694 checkUnnamed566(core.List<api.OrderCancellation> o) { 2694 checkUnnamed305(core.List<api.OrderCancellation> o) {
2695 unittest.expect(o, unittest.hasLength(2)); 2695 unittest.expect(o, unittest.hasLength(2));
2696 checkOrderCancellation(o[0]); 2696 checkOrderCancellation(o[0]);
2697 checkOrderCancellation(o[1]); 2697 checkOrderCancellation(o[1]);
2698 } 2698 }
2699 2699
2700 buildUnnamed567() { 2700 buildUnnamed306() {
2701 var o = new core.List<api.OrderReturn>(); 2701 var o = new core.List<api.OrderReturn>();
2702 o.add(buildOrderReturn()); 2702 o.add(buildOrderReturn());
2703 o.add(buildOrderReturn()); 2703 o.add(buildOrderReturn());
2704 return o; 2704 return o;
2705 } 2705 }
2706 2706
2707 checkUnnamed567(core.List<api.OrderReturn> o) { 2707 checkUnnamed306(core.List<api.OrderReturn> o) {
2708 unittest.expect(o, unittest.hasLength(2)); 2708 unittest.expect(o, unittest.hasLength(2));
2709 checkOrderReturn(o[0]); 2709 checkOrderReturn(o[0]);
2710 checkOrderReturn(o[1]); 2710 checkOrderReturn(o[1]);
2711 } 2711 }
2712 2712
2713 core.int buildCounterOrderLineItem = 0; 2713 core.int buildCounterOrderLineItem = 0;
2714 buildOrderLineItem() { 2714 buildOrderLineItem() {
2715 var o = new api.OrderLineItem(); 2715 var o = new api.OrderLineItem();
2716 buildCounterOrderLineItem++; 2716 buildCounterOrderLineItem++;
2717 if (buildCounterOrderLineItem < 3) { 2717 if (buildCounterOrderLineItem < 3) {
2718 o.cancellations = buildUnnamed566(); 2718 o.cancellations = buildUnnamed305();
2719 o.id = "foo"; 2719 o.id = "foo";
2720 o.price = buildPrice(); 2720 o.price = buildPrice();
2721 o.product = buildOrderLineItemProduct(); 2721 o.product = buildOrderLineItemProduct();
2722 o.quantityCanceled = 42; 2722 o.quantityCanceled = 42;
2723 o.quantityDelivered = 42; 2723 o.quantityDelivered = 42;
2724 o.quantityOrdered = 42; 2724 o.quantityOrdered = 42;
2725 o.quantityPending = 42; 2725 o.quantityPending = 42;
2726 o.quantityReturned = 42; 2726 o.quantityReturned = 42;
2727 o.quantityShipped = 42; 2727 o.quantityShipped = 42;
2728 o.returnInfo = buildOrderLineItemReturnInfo(); 2728 o.returnInfo = buildOrderLineItemReturnInfo();
2729 o.returns = buildUnnamed567(); 2729 o.returns = buildUnnamed306();
2730 o.shippingDetails = buildOrderLineItemShippingDetails(); 2730 o.shippingDetails = buildOrderLineItemShippingDetails();
2731 o.tax = buildPrice(); 2731 o.tax = buildPrice();
2732 } 2732 }
2733 buildCounterOrderLineItem--; 2733 buildCounterOrderLineItem--;
2734 return o; 2734 return o;
2735 } 2735 }
2736 2736
2737 checkOrderLineItem(api.OrderLineItem o) { 2737 checkOrderLineItem(api.OrderLineItem o) {
2738 buildCounterOrderLineItem++; 2738 buildCounterOrderLineItem++;
2739 if (buildCounterOrderLineItem < 3) { 2739 if (buildCounterOrderLineItem < 3) {
2740 checkUnnamed566(o.cancellations); 2740 checkUnnamed305(o.cancellations);
2741 unittest.expect(o.id, unittest.equals('foo')); 2741 unittest.expect(o.id, unittest.equals('foo'));
2742 checkPrice(o.price); 2742 checkPrice(o.price);
2743 checkOrderLineItemProduct(o.product); 2743 checkOrderLineItemProduct(o.product);
2744 unittest.expect(o.quantityCanceled, unittest.equals(42)); 2744 unittest.expect(o.quantityCanceled, unittest.equals(42));
2745 unittest.expect(o.quantityDelivered, unittest.equals(42)); 2745 unittest.expect(o.quantityDelivered, unittest.equals(42));
2746 unittest.expect(o.quantityOrdered, unittest.equals(42)); 2746 unittest.expect(o.quantityOrdered, unittest.equals(42));
2747 unittest.expect(o.quantityPending, unittest.equals(42)); 2747 unittest.expect(o.quantityPending, unittest.equals(42));
2748 unittest.expect(o.quantityReturned, unittest.equals(42)); 2748 unittest.expect(o.quantityReturned, unittest.equals(42));
2749 unittest.expect(o.quantityShipped, unittest.equals(42)); 2749 unittest.expect(o.quantityShipped, unittest.equals(42));
2750 checkOrderLineItemReturnInfo(o.returnInfo); 2750 checkOrderLineItemReturnInfo(o.returnInfo);
2751 checkUnnamed567(o.returns); 2751 checkUnnamed306(o.returns);
2752 checkOrderLineItemShippingDetails(o.shippingDetails); 2752 checkOrderLineItemShippingDetails(o.shippingDetails);
2753 checkPrice(o.tax); 2753 checkPrice(o.tax);
2754 } 2754 }
2755 buildCounterOrderLineItem--; 2755 buildCounterOrderLineItem--;
2756 } 2756 }
2757 2757
2758 buildUnnamed568() { 2758 buildUnnamed307() {
2759 var o = new core.List<api.OrderLineItemProductVariantAttribute>(); 2759 var o = new core.List<api.OrderLineItemProductVariantAttribute>();
2760 o.add(buildOrderLineItemProductVariantAttribute()); 2760 o.add(buildOrderLineItemProductVariantAttribute());
2761 o.add(buildOrderLineItemProductVariantAttribute()); 2761 o.add(buildOrderLineItemProductVariantAttribute());
2762 return o; 2762 return o;
2763 } 2763 }
2764 2764
2765 checkUnnamed568(core.List<api.OrderLineItemProductVariantAttribute> o) { 2765 checkUnnamed307(core.List<api.OrderLineItemProductVariantAttribute> o) {
2766 unittest.expect(o, unittest.hasLength(2)); 2766 unittest.expect(o, unittest.hasLength(2));
2767 checkOrderLineItemProductVariantAttribute(o[0]); 2767 checkOrderLineItemProductVariantAttribute(o[0]);
2768 checkOrderLineItemProductVariantAttribute(o[1]); 2768 checkOrderLineItemProductVariantAttribute(o[1]);
2769 } 2769 }
2770 2770
2771 core.int buildCounterOrderLineItemProduct = 0; 2771 core.int buildCounterOrderLineItemProduct = 0;
2772 buildOrderLineItemProduct() { 2772 buildOrderLineItemProduct() {
2773 var o = new api.OrderLineItemProduct(); 2773 var o = new api.OrderLineItemProduct();
2774 buildCounterOrderLineItemProduct++; 2774 buildCounterOrderLineItemProduct++;
2775 if (buildCounterOrderLineItemProduct < 3) { 2775 if (buildCounterOrderLineItemProduct < 3) {
2776 o.brand = "foo"; 2776 o.brand = "foo";
2777 o.channel = "foo"; 2777 o.channel = "foo";
2778 o.condition = "foo"; 2778 o.condition = "foo";
2779 o.contentLanguage = "foo"; 2779 o.contentLanguage = "foo";
2780 o.gtin = "foo"; 2780 o.gtin = "foo";
2781 o.id = "foo"; 2781 o.id = "foo";
2782 o.imageLink = "foo"; 2782 o.imageLink = "foo";
2783 o.itemGroupId = "foo"; 2783 o.itemGroupId = "foo";
2784 o.mpn = "foo"; 2784 o.mpn = "foo";
2785 o.offerId = "foo"; 2785 o.offerId = "foo";
2786 o.price = buildPrice(); 2786 o.price = buildPrice();
2787 o.shownImage = "foo"; 2787 o.shownImage = "foo";
2788 o.targetCountry = "foo"; 2788 o.targetCountry = "foo";
2789 o.title = "foo"; 2789 o.title = "foo";
2790 o.variantAttributes = buildUnnamed568(); 2790 o.variantAttributes = buildUnnamed307();
2791 } 2791 }
2792 buildCounterOrderLineItemProduct--; 2792 buildCounterOrderLineItemProduct--;
2793 return o; 2793 return o;
2794 } 2794 }
2795 2795
2796 checkOrderLineItemProduct(api.OrderLineItemProduct o) { 2796 checkOrderLineItemProduct(api.OrderLineItemProduct o) {
2797 buildCounterOrderLineItemProduct++; 2797 buildCounterOrderLineItemProduct++;
2798 if (buildCounterOrderLineItemProduct < 3) { 2798 if (buildCounterOrderLineItemProduct < 3) {
2799 unittest.expect(o.brand, unittest.equals('foo')); 2799 unittest.expect(o.brand, unittest.equals('foo'));
2800 unittest.expect(o.channel, unittest.equals('foo')); 2800 unittest.expect(o.channel, unittest.equals('foo'));
2801 unittest.expect(o.condition, unittest.equals('foo')); 2801 unittest.expect(o.condition, unittest.equals('foo'));
2802 unittest.expect(o.contentLanguage, unittest.equals('foo')); 2802 unittest.expect(o.contentLanguage, unittest.equals('foo'));
2803 unittest.expect(o.gtin, unittest.equals('foo')); 2803 unittest.expect(o.gtin, unittest.equals('foo'));
2804 unittest.expect(o.id, unittest.equals('foo')); 2804 unittest.expect(o.id, unittest.equals('foo'));
2805 unittest.expect(o.imageLink, unittest.equals('foo')); 2805 unittest.expect(o.imageLink, unittest.equals('foo'));
2806 unittest.expect(o.itemGroupId, unittest.equals('foo')); 2806 unittest.expect(o.itemGroupId, unittest.equals('foo'));
2807 unittest.expect(o.mpn, unittest.equals('foo')); 2807 unittest.expect(o.mpn, unittest.equals('foo'));
2808 unittest.expect(o.offerId, unittest.equals('foo')); 2808 unittest.expect(o.offerId, unittest.equals('foo'));
2809 checkPrice(o.price); 2809 checkPrice(o.price);
2810 unittest.expect(o.shownImage, unittest.equals('foo')); 2810 unittest.expect(o.shownImage, unittest.equals('foo'));
2811 unittest.expect(o.targetCountry, unittest.equals('foo')); 2811 unittest.expect(o.targetCountry, unittest.equals('foo'));
2812 unittest.expect(o.title, unittest.equals('foo')); 2812 unittest.expect(o.title, unittest.equals('foo'));
2813 checkUnnamed568(o.variantAttributes); 2813 checkUnnamed307(o.variantAttributes);
2814 } 2814 }
2815 buildCounterOrderLineItemProduct--; 2815 buildCounterOrderLineItemProduct--;
2816 } 2816 }
2817 2817
2818 core.int buildCounterOrderLineItemProductVariantAttribute = 0; 2818 core.int buildCounterOrderLineItemProductVariantAttribute = 0;
2819 buildOrderLineItemProductVariantAttribute() { 2819 buildOrderLineItemProductVariantAttribute() {
2820 var o = new api.OrderLineItemProductVariantAttribute(); 2820 var o = new api.OrderLineItemProductVariantAttribute();
2821 buildCounterOrderLineItemProductVariantAttribute++; 2821 buildCounterOrderLineItemProductVariantAttribute++;
2822 if (buildCounterOrderLineItemProductVariantAttribute < 3) { 2822 if (buildCounterOrderLineItemProductVariantAttribute < 3) {
2823 o.dimension = "foo"; 2823 o.dimension = "foo";
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
2929 checkOrderAddress(o.billingAddress); 2929 checkOrderAddress(o.billingAddress);
2930 unittest.expect(o.expirationMonth, unittest.equals(42)); 2930 unittest.expect(o.expirationMonth, unittest.equals(42));
2931 unittest.expect(o.expirationYear, unittest.equals(42)); 2931 unittest.expect(o.expirationYear, unittest.equals(42));
2932 unittest.expect(o.lastFourDigits, unittest.equals('foo')); 2932 unittest.expect(o.lastFourDigits, unittest.equals('foo'));
2933 unittest.expect(o.phoneNumber, unittest.equals('foo')); 2933 unittest.expect(o.phoneNumber, unittest.equals('foo'));
2934 unittest.expect(o.type, unittest.equals('foo')); 2934 unittest.expect(o.type, unittest.equals('foo'));
2935 } 2935 }
2936 buildCounterOrderPaymentMethod--; 2936 buildCounterOrderPaymentMethod--;
2937 } 2937 }
2938 2938
2939 buildUnnamed569() { 2939 buildUnnamed308() {
2940 var o = new core.List<api.OrderPromotionBenefit>(); 2940 var o = new core.List<api.OrderPromotionBenefit>();
2941 o.add(buildOrderPromotionBenefit()); 2941 o.add(buildOrderPromotionBenefit());
2942 o.add(buildOrderPromotionBenefit()); 2942 o.add(buildOrderPromotionBenefit());
2943 return o; 2943 return o;
2944 } 2944 }
2945 2945
2946 checkUnnamed569(core.List<api.OrderPromotionBenefit> o) { 2946 checkUnnamed308(core.List<api.OrderPromotionBenefit> o) {
2947 unittest.expect(o, unittest.hasLength(2)); 2947 unittest.expect(o, unittest.hasLength(2));
2948 checkOrderPromotionBenefit(o[0]); 2948 checkOrderPromotionBenefit(o[0]);
2949 checkOrderPromotionBenefit(o[1]); 2949 checkOrderPromotionBenefit(o[1]);
2950 } 2950 }
2951 2951
2952 core.int buildCounterOrderPromotion = 0; 2952 core.int buildCounterOrderPromotion = 0;
2953 buildOrderPromotion() { 2953 buildOrderPromotion() {
2954 var o = new api.OrderPromotion(); 2954 var o = new api.OrderPromotion();
2955 buildCounterOrderPromotion++; 2955 buildCounterOrderPromotion++;
2956 if (buildCounterOrderPromotion < 3) { 2956 if (buildCounterOrderPromotion < 3) {
2957 o.benefits = buildUnnamed569(); 2957 o.benefits = buildUnnamed308();
2958 o.effectiveDates = "foo"; 2958 o.effectiveDates = "foo";
2959 o.genericRedemptionCode = "foo"; 2959 o.genericRedemptionCode = "foo";
2960 o.id = "foo"; 2960 o.id = "foo";
2961 o.longTitle = "foo"; 2961 o.longTitle = "foo";
2962 o.productApplicability = "foo"; 2962 o.productApplicability = "foo";
2963 o.redemptionChannel = "foo"; 2963 o.redemptionChannel = "foo";
2964 } 2964 }
2965 buildCounterOrderPromotion--; 2965 buildCounterOrderPromotion--;
2966 return o; 2966 return o;
2967 } 2967 }
2968 2968
2969 checkOrderPromotion(api.OrderPromotion o) { 2969 checkOrderPromotion(api.OrderPromotion o) {
2970 buildCounterOrderPromotion++; 2970 buildCounterOrderPromotion++;
2971 if (buildCounterOrderPromotion < 3) { 2971 if (buildCounterOrderPromotion < 3) {
2972 checkUnnamed569(o.benefits); 2972 checkUnnamed308(o.benefits);
2973 unittest.expect(o.effectiveDates, unittest.equals('foo')); 2973 unittest.expect(o.effectiveDates, unittest.equals('foo'));
2974 unittest.expect(o.genericRedemptionCode, unittest.equals('foo')); 2974 unittest.expect(o.genericRedemptionCode, unittest.equals('foo'));
2975 unittest.expect(o.id, unittest.equals('foo')); 2975 unittest.expect(o.id, unittest.equals('foo'));
2976 unittest.expect(o.longTitle, unittest.equals('foo')); 2976 unittest.expect(o.longTitle, unittest.equals('foo'));
2977 unittest.expect(o.productApplicability, unittest.equals('foo')); 2977 unittest.expect(o.productApplicability, unittest.equals('foo'));
2978 unittest.expect(o.redemptionChannel, unittest.equals('foo')); 2978 unittest.expect(o.redemptionChannel, unittest.equals('foo'));
2979 } 2979 }
2980 buildCounterOrderPromotion--; 2980 buildCounterOrderPromotion--;
2981 } 2981 }
2982 2982
2983 buildUnnamed570() { 2983 buildUnnamed309() {
2984 var o = new core.List<core.String>(); 2984 var o = new core.List<core.String>();
2985 o.add("foo"); 2985 o.add("foo");
2986 o.add("foo"); 2986 o.add("foo");
2987 return o; 2987 return o;
2988 } 2988 }
2989 2989
2990 checkUnnamed570(core.List<core.String> o) { 2990 checkUnnamed309(core.List<core.String> o) {
2991 unittest.expect(o, unittest.hasLength(2)); 2991 unittest.expect(o, unittest.hasLength(2));
2992 unittest.expect(o[0], unittest.equals('foo')); 2992 unittest.expect(o[0], unittest.equals('foo'));
2993 unittest.expect(o[1], unittest.equals('foo')); 2993 unittest.expect(o[1], unittest.equals('foo'));
2994 } 2994 }
2995 2995
2996 core.int buildCounterOrderPromotionBenefit = 0; 2996 core.int buildCounterOrderPromotionBenefit = 0;
2997 buildOrderPromotionBenefit() { 2997 buildOrderPromotionBenefit() {
2998 var o = new api.OrderPromotionBenefit(); 2998 var o = new api.OrderPromotionBenefit();
2999 buildCounterOrderPromotionBenefit++; 2999 buildCounterOrderPromotionBenefit++;
3000 if (buildCounterOrderPromotionBenefit < 3) { 3000 if (buildCounterOrderPromotionBenefit < 3) {
3001 o.discount = buildPrice(); 3001 o.discount = buildPrice();
3002 o.offerIds = buildUnnamed570(); 3002 o.offerIds = buildUnnamed309();
3003 o.subType = "foo"; 3003 o.subType = "foo";
3004 o.taxImpact = buildPrice(); 3004 o.taxImpact = buildPrice();
3005 o.type = "foo"; 3005 o.type = "foo";
3006 } 3006 }
3007 buildCounterOrderPromotionBenefit--; 3007 buildCounterOrderPromotionBenefit--;
3008 return o; 3008 return o;
3009 } 3009 }
3010 3010
3011 checkOrderPromotionBenefit(api.OrderPromotionBenefit o) { 3011 checkOrderPromotionBenefit(api.OrderPromotionBenefit o) {
3012 buildCounterOrderPromotionBenefit++; 3012 buildCounterOrderPromotionBenefit++;
3013 if (buildCounterOrderPromotionBenefit < 3) { 3013 if (buildCounterOrderPromotionBenefit < 3) {
3014 checkPrice(o.discount); 3014 checkPrice(o.discount);
3015 checkUnnamed570(o.offerIds); 3015 checkUnnamed309(o.offerIds);
3016 unittest.expect(o.subType, unittest.equals('foo')); 3016 unittest.expect(o.subType, unittest.equals('foo'));
3017 checkPrice(o.taxImpact); 3017 checkPrice(o.taxImpact);
3018 unittest.expect(o.type, unittest.equals('foo')); 3018 unittest.expect(o.type, unittest.equals('foo'));
3019 } 3019 }
3020 buildCounterOrderPromotionBenefit--; 3020 buildCounterOrderPromotionBenefit--;
3021 } 3021 }
3022 3022
3023 core.int buildCounterOrderRefund = 0; 3023 core.int buildCounterOrderRefund = 0;
3024 buildOrderRefund() { 3024 buildOrderRefund() {
3025 var o = new api.OrderRefund(); 3025 var o = new api.OrderRefund();
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
3067 if (buildCounterOrderReturn < 3) { 3067 if (buildCounterOrderReturn < 3) {
3068 unittest.expect(o.actor, unittest.equals('foo')); 3068 unittest.expect(o.actor, unittest.equals('foo'));
3069 unittest.expect(o.creationDate, unittest.equals('foo')); 3069 unittest.expect(o.creationDate, unittest.equals('foo'));
3070 unittest.expect(o.quantity, unittest.equals(42)); 3070 unittest.expect(o.quantity, unittest.equals(42));
3071 unittest.expect(o.reason, unittest.equals('foo')); 3071 unittest.expect(o.reason, unittest.equals('foo'));
3072 unittest.expect(o.reasonText, unittest.equals('foo')); 3072 unittest.expect(o.reasonText, unittest.equals('foo'));
3073 } 3073 }
3074 buildCounterOrderReturn--; 3074 buildCounterOrderReturn--;
3075 } 3075 }
3076 3076
3077 buildUnnamed571() { 3077 buildUnnamed310() {
3078 var o = new core.List<api.OrderShipmentLineItemShipment>(); 3078 var o = new core.List<api.OrderShipmentLineItemShipment>();
3079 o.add(buildOrderShipmentLineItemShipment()); 3079 o.add(buildOrderShipmentLineItemShipment());
3080 o.add(buildOrderShipmentLineItemShipment()); 3080 o.add(buildOrderShipmentLineItemShipment());
3081 return o; 3081 return o;
3082 } 3082 }
3083 3083
3084 checkUnnamed571(core.List<api.OrderShipmentLineItemShipment> o) { 3084 checkUnnamed310(core.List<api.OrderShipmentLineItemShipment> o) {
3085 unittest.expect(o, unittest.hasLength(2)); 3085 unittest.expect(o, unittest.hasLength(2));
3086 checkOrderShipmentLineItemShipment(o[0]); 3086 checkOrderShipmentLineItemShipment(o[0]);
3087 checkOrderShipmentLineItemShipment(o[1]); 3087 checkOrderShipmentLineItemShipment(o[1]);
3088 } 3088 }
3089 3089
3090 core.int buildCounterOrderShipment = 0; 3090 core.int buildCounterOrderShipment = 0;
3091 buildOrderShipment() { 3091 buildOrderShipment() {
3092 var o = new api.OrderShipment(); 3092 var o = new api.OrderShipment();
3093 buildCounterOrderShipment++; 3093 buildCounterOrderShipment++;
3094 if (buildCounterOrderShipment < 3) { 3094 if (buildCounterOrderShipment < 3) {
3095 o.carrier = "foo"; 3095 o.carrier = "foo";
3096 o.creationDate = "foo"; 3096 o.creationDate = "foo";
3097 o.deliveryDate = "foo"; 3097 o.deliveryDate = "foo";
3098 o.id = "foo"; 3098 o.id = "foo";
3099 o.lineItems = buildUnnamed571(); 3099 o.lineItems = buildUnnamed310();
3100 o.status = "foo"; 3100 o.status = "foo";
3101 o.trackingId = "foo"; 3101 o.trackingId = "foo";
3102 } 3102 }
3103 buildCounterOrderShipment--; 3103 buildCounterOrderShipment--;
3104 return o; 3104 return o;
3105 } 3105 }
3106 3106
3107 checkOrderShipment(api.OrderShipment o) { 3107 checkOrderShipment(api.OrderShipment o) {
3108 buildCounterOrderShipment++; 3108 buildCounterOrderShipment++;
3109 if (buildCounterOrderShipment < 3) { 3109 if (buildCounterOrderShipment < 3) {
3110 unittest.expect(o.carrier, unittest.equals('foo')); 3110 unittest.expect(o.carrier, unittest.equals('foo'));
3111 unittest.expect(o.creationDate, unittest.equals('foo')); 3111 unittest.expect(o.creationDate, unittest.equals('foo'));
3112 unittest.expect(o.deliveryDate, unittest.equals('foo')); 3112 unittest.expect(o.deliveryDate, unittest.equals('foo'));
3113 unittest.expect(o.id, unittest.equals('foo')); 3113 unittest.expect(o.id, unittest.equals('foo'));
3114 checkUnnamed571(o.lineItems); 3114 checkUnnamed310(o.lineItems);
3115 unittest.expect(o.status, unittest.equals('foo')); 3115 unittest.expect(o.status, unittest.equals('foo'));
3116 unittest.expect(o.trackingId, unittest.equals('foo')); 3116 unittest.expect(o.trackingId, unittest.equals('foo'));
3117 } 3117 }
3118 buildCounterOrderShipment--; 3118 buildCounterOrderShipment--;
3119 } 3119 }
3120 3120
3121 core.int buildCounterOrderShipmentLineItemShipment = 0; 3121 core.int buildCounterOrderShipmentLineItemShipment = 0;
3122 buildOrderShipmentLineItemShipment() { 3122 buildOrderShipmentLineItemShipment() {
3123 var o = new api.OrderShipmentLineItemShipment(); 3123 var o = new api.OrderShipmentLineItemShipment();
3124 buildCounterOrderShipmentLineItemShipment++; 3124 buildCounterOrderShipmentLineItemShipment++;
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
3327 3327
3328 checkOrdersCreateTestOrderResponse(api.OrdersCreateTestOrderResponse o) { 3328 checkOrdersCreateTestOrderResponse(api.OrdersCreateTestOrderResponse o) {
3329 buildCounterOrdersCreateTestOrderResponse++; 3329 buildCounterOrdersCreateTestOrderResponse++;
3330 if (buildCounterOrdersCreateTestOrderResponse < 3) { 3330 if (buildCounterOrdersCreateTestOrderResponse < 3) {
3331 unittest.expect(o.kind, unittest.equals('foo')); 3331 unittest.expect(o.kind, unittest.equals('foo'));
3332 unittest.expect(o.orderId, unittest.equals('foo')); 3332 unittest.expect(o.orderId, unittest.equals('foo'));
3333 } 3333 }
3334 buildCounterOrdersCreateTestOrderResponse--; 3334 buildCounterOrdersCreateTestOrderResponse--;
3335 } 3335 }
3336 3336
3337 buildUnnamed572() { 3337 buildUnnamed311() {
3338 var o = new core.List<api.OrdersCustomBatchRequestEntry>(); 3338 var o = new core.List<api.OrdersCustomBatchRequestEntry>();
3339 o.add(buildOrdersCustomBatchRequestEntry()); 3339 o.add(buildOrdersCustomBatchRequestEntry());
3340 o.add(buildOrdersCustomBatchRequestEntry()); 3340 o.add(buildOrdersCustomBatchRequestEntry());
3341 return o; 3341 return o;
3342 } 3342 }
3343 3343
3344 checkUnnamed572(core.List<api.OrdersCustomBatchRequestEntry> o) { 3344 checkUnnamed311(core.List<api.OrdersCustomBatchRequestEntry> o) {
3345 unittest.expect(o, unittest.hasLength(2)); 3345 unittest.expect(o, unittest.hasLength(2));
3346 checkOrdersCustomBatchRequestEntry(o[0]); 3346 checkOrdersCustomBatchRequestEntry(o[0]);
3347 checkOrdersCustomBatchRequestEntry(o[1]); 3347 checkOrdersCustomBatchRequestEntry(o[1]);
3348 } 3348 }
3349 3349
3350 core.int buildCounterOrdersCustomBatchRequest = 0; 3350 core.int buildCounterOrdersCustomBatchRequest = 0;
3351 buildOrdersCustomBatchRequest() { 3351 buildOrdersCustomBatchRequest() {
3352 var o = new api.OrdersCustomBatchRequest(); 3352 var o = new api.OrdersCustomBatchRequest();
3353 buildCounterOrdersCustomBatchRequest++; 3353 buildCounterOrdersCustomBatchRequest++;
3354 if (buildCounterOrdersCustomBatchRequest < 3) { 3354 if (buildCounterOrdersCustomBatchRequest < 3) {
3355 o.entries = buildUnnamed572(); 3355 o.entries = buildUnnamed311();
3356 } 3356 }
3357 buildCounterOrdersCustomBatchRequest--; 3357 buildCounterOrdersCustomBatchRequest--;
3358 return o; 3358 return o;
3359 } 3359 }
3360 3360
3361 checkOrdersCustomBatchRequest(api.OrdersCustomBatchRequest o) { 3361 checkOrdersCustomBatchRequest(api.OrdersCustomBatchRequest o) {
3362 buildCounterOrdersCustomBatchRequest++; 3362 buildCounterOrdersCustomBatchRequest++;
3363 if (buildCounterOrdersCustomBatchRequest < 3) { 3363 if (buildCounterOrdersCustomBatchRequest < 3) {
3364 checkUnnamed572(o.entries); 3364 checkUnnamed311(o.entries);
3365 } 3365 }
3366 buildCounterOrdersCustomBatchRequest--; 3366 buildCounterOrdersCustomBatchRequest--;
3367 } 3367 }
3368 3368
3369 core.int buildCounterOrdersCustomBatchRequestEntry = 0; 3369 core.int buildCounterOrdersCustomBatchRequestEntry = 0;
3370 buildOrdersCustomBatchRequestEntry() { 3370 buildOrdersCustomBatchRequestEntry() {
3371 var o = new api.OrdersCustomBatchRequestEntry(); 3371 var o = new api.OrdersCustomBatchRequestEntry();
3372 buildCounterOrdersCustomBatchRequestEntry++; 3372 buildCounterOrdersCustomBatchRequestEntry++;
3373 if (buildCounterOrdersCustomBatchRequestEntry < 3) { 3373 if (buildCounterOrdersCustomBatchRequestEntry < 3) {
3374 o.batchId = 42; 3374 o.batchId = 42;
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
3496 buildCounterOrdersCustomBatchRequestEntryReturnLineItem++; 3496 buildCounterOrdersCustomBatchRequestEntryReturnLineItem++;
3497 if (buildCounterOrdersCustomBatchRequestEntryReturnLineItem < 3) { 3497 if (buildCounterOrdersCustomBatchRequestEntryReturnLineItem < 3) {
3498 unittest.expect(o.lineItemId, unittest.equals('foo')); 3498 unittest.expect(o.lineItemId, unittest.equals('foo'));
3499 unittest.expect(o.quantity, unittest.equals(42)); 3499 unittest.expect(o.quantity, unittest.equals(42));
3500 unittest.expect(o.reason, unittest.equals('foo')); 3500 unittest.expect(o.reason, unittest.equals('foo'));
3501 unittest.expect(o.reasonText, unittest.equals('foo')); 3501 unittest.expect(o.reasonText, unittest.equals('foo'));
3502 } 3502 }
3503 buildCounterOrdersCustomBatchRequestEntryReturnLineItem--; 3503 buildCounterOrdersCustomBatchRequestEntryReturnLineItem--;
3504 } 3504 }
3505 3505
3506 buildUnnamed573() { 3506 buildUnnamed312() {
3507 var o = new core.List<api.OrderShipmentLineItemShipment>(); 3507 var o = new core.List<api.OrderShipmentLineItemShipment>();
3508 o.add(buildOrderShipmentLineItemShipment()); 3508 o.add(buildOrderShipmentLineItemShipment());
3509 o.add(buildOrderShipmentLineItemShipment()); 3509 o.add(buildOrderShipmentLineItemShipment());
3510 return o; 3510 return o;
3511 } 3511 }
3512 3512
3513 checkUnnamed573(core.List<api.OrderShipmentLineItemShipment> o) { 3513 checkUnnamed312(core.List<api.OrderShipmentLineItemShipment> o) {
3514 unittest.expect(o, unittest.hasLength(2)); 3514 unittest.expect(o, unittest.hasLength(2));
3515 checkOrderShipmentLineItemShipment(o[0]); 3515 checkOrderShipmentLineItemShipment(o[0]);
3516 checkOrderShipmentLineItemShipment(o[1]); 3516 checkOrderShipmentLineItemShipment(o[1]);
3517 } 3517 }
3518 3518
3519 core.int buildCounterOrdersCustomBatchRequestEntryShipLineItems = 0; 3519 core.int buildCounterOrdersCustomBatchRequestEntryShipLineItems = 0;
3520 buildOrdersCustomBatchRequestEntryShipLineItems() { 3520 buildOrdersCustomBatchRequestEntryShipLineItems() {
3521 var o = new api.OrdersCustomBatchRequestEntryShipLineItems(); 3521 var o = new api.OrdersCustomBatchRequestEntryShipLineItems();
3522 buildCounterOrdersCustomBatchRequestEntryShipLineItems++; 3522 buildCounterOrdersCustomBatchRequestEntryShipLineItems++;
3523 if (buildCounterOrdersCustomBatchRequestEntryShipLineItems < 3) { 3523 if (buildCounterOrdersCustomBatchRequestEntryShipLineItems < 3) {
3524 o.carrier = "foo"; 3524 o.carrier = "foo";
3525 o.lineItems = buildUnnamed573(); 3525 o.lineItems = buildUnnamed312();
3526 o.shipmentId = "foo"; 3526 o.shipmentId = "foo";
3527 o.trackingId = "foo"; 3527 o.trackingId = "foo";
3528 } 3528 }
3529 buildCounterOrdersCustomBatchRequestEntryShipLineItems--; 3529 buildCounterOrdersCustomBatchRequestEntryShipLineItems--;
3530 return o; 3530 return o;
3531 } 3531 }
3532 3532
3533 checkOrdersCustomBatchRequestEntryShipLineItems(api.OrdersCustomBatchRequestEntr yShipLineItems o) { 3533 checkOrdersCustomBatchRequestEntryShipLineItems(api.OrdersCustomBatchRequestEntr yShipLineItems o) {
3534 buildCounterOrdersCustomBatchRequestEntryShipLineItems++; 3534 buildCounterOrdersCustomBatchRequestEntryShipLineItems++;
3535 if (buildCounterOrdersCustomBatchRequestEntryShipLineItems < 3) { 3535 if (buildCounterOrdersCustomBatchRequestEntryShipLineItems < 3) {
3536 unittest.expect(o.carrier, unittest.equals('foo')); 3536 unittest.expect(o.carrier, unittest.equals('foo'));
3537 checkUnnamed573(o.lineItems); 3537 checkUnnamed312(o.lineItems);
3538 unittest.expect(o.shipmentId, unittest.equals('foo')); 3538 unittest.expect(o.shipmentId, unittest.equals('foo'));
3539 unittest.expect(o.trackingId, unittest.equals('foo')); 3539 unittest.expect(o.trackingId, unittest.equals('foo'));
3540 } 3540 }
3541 buildCounterOrdersCustomBatchRequestEntryShipLineItems--; 3541 buildCounterOrdersCustomBatchRequestEntryShipLineItems--;
3542 } 3542 }
3543 3543
3544 core.int buildCounterOrdersCustomBatchRequestEntryUpdateShipment = 0; 3544 core.int buildCounterOrdersCustomBatchRequestEntryUpdateShipment = 0;
3545 buildOrdersCustomBatchRequestEntryUpdateShipment() { 3545 buildOrdersCustomBatchRequestEntryUpdateShipment() {
3546 var o = new api.OrdersCustomBatchRequestEntryUpdateShipment(); 3546 var o = new api.OrdersCustomBatchRequestEntryUpdateShipment();
3547 buildCounterOrdersCustomBatchRequestEntryUpdateShipment++; 3547 buildCounterOrdersCustomBatchRequestEntryUpdateShipment++;
(...skipping 11 matching lines...) Expand all
3559 buildCounterOrdersCustomBatchRequestEntryUpdateShipment++; 3559 buildCounterOrdersCustomBatchRequestEntryUpdateShipment++;
3560 if (buildCounterOrdersCustomBatchRequestEntryUpdateShipment < 3) { 3560 if (buildCounterOrdersCustomBatchRequestEntryUpdateShipment < 3) {
3561 unittest.expect(o.carrier, unittest.equals('foo')); 3561 unittest.expect(o.carrier, unittest.equals('foo'));
3562 unittest.expect(o.shipmentId, unittest.equals('foo')); 3562 unittest.expect(o.shipmentId, unittest.equals('foo'));
3563 unittest.expect(o.status, unittest.equals('foo')); 3563 unittest.expect(o.status, unittest.equals('foo'));
3564 unittest.expect(o.trackingId, unittest.equals('foo')); 3564 unittest.expect(o.trackingId, unittest.equals('foo'));
3565 } 3565 }
3566 buildCounterOrdersCustomBatchRequestEntryUpdateShipment--; 3566 buildCounterOrdersCustomBatchRequestEntryUpdateShipment--;
3567 } 3567 }
3568 3568
3569 buildUnnamed574() { 3569 buildUnnamed313() {
3570 var o = new core.List<api.OrdersCustomBatchResponseEntry>(); 3570 var o = new core.List<api.OrdersCustomBatchResponseEntry>();
3571 o.add(buildOrdersCustomBatchResponseEntry()); 3571 o.add(buildOrdersCustomBatchResponseEntry());
3572 o.add(buildOrdersCustomBatchResponseEntry()); 3572 o.add(buildOrdersCustomBatchResponseEntry());
3573 return o; 3573 return o;
3574 } 3574 }
3575 3575
3576 checkUnnamed574(core.List<api.OrdersCustomBatchResponseEntry> o) { 3576 checkUnnamed313(core.List<api.OrdersCustomBatchResponseEntry> o) {
3577 unittest.expect(o, unittest.hasLength(2)); 3577 unittest.expect(o, unittest.hasLength(2));
3578 checkOrdersCustomBatchResponseEntry(o[0]); 3578 checkOrdersCustomBatchResponseEntry(o[0]);
3579 checkOrdersCustomBatchResponseEntry(o[1]); 3579 checkOrdersCustomBatchResponseEntry(o[1]);
3580 } 3580 }
3581 3581
3582 core.int buildCounterOrdersCustomBatchResponse = 0; 3582 core.int buildCounterOrdersCustomBatchResponse = 0;
3583 buildOrdersCustomBatchResponse() { 3583 buildOrdersCustomBatchResponse() {
3584 var o = new api.OrdersCustomBatchResponse(); 3584 var o = new api.OrdersCustomBatchResponse();
3585 buildCounterOrdersCustomBatchResponse++; 3585 buildCounterOrdersCustomBatchResponse++;
3586 if (buildCounterOrdersCustomBatchResponse < 3) { 3586 if (buildCounterOrdersCustomBatchResponse < 3) {
3587 o.entries = buildUnnamed574(); 3587 o.entries = buildUnnamed313();
3588 o.kind = "foo"; 3588 o.kind = "foo";
3589 } 3589 }
3590 buildCounterOrdersCustomBatchResponse--; 3590 buildCounterOrdersCustomBatchResponse--;
3591 return o; 3591 return o;
3592 } 3592 }
3593 3593
3594 checkOrdersCustomBatchResponse(api.OrdersCustomBatchResponse o) { 3594 checkOrdersCustomBatchResponse(api.OrdersCustomBatchResponse o) {
3595 buildCounterOrdersCustomBatchResponse++; 3595 buildCounterOrdersCustomBatchResponse++;
3596 if (buildCounterOrdersCustomBatchResponse < 3) { 3596 if (buildCounterOrdersCustomBatchResponse < 3) {
3597 checkUnnamed574(o.entries); 3597 checkUnnamed313(o.entries);
3598 unittest.expect(o.kind, unittest.equals('foo')); 3598 unittest.expect(o.kind, unittest.equals('foo'));
3599 } 3599 }
3600 buildCounterOrdersCustomBatchResponse--; 3600 buildCounterOrdersCustomBatchResponse--;
3601 } 3601 }
3602 3602
3603 core.int buildCounterOrdersCustomBatchResponseEntry = 0; 3603 core.int buildCounterOrdersCustomBatchResponseEntry = 0;
3604 buildOrdersCustomBatchResponseEntry() { 3604 buildOrdersCustomBatchResponseEntry() {
3605 var o = new api.OrdersCustomBatchResponseEntry(); 3605 var o = new api.OrdersCustomBatchResponseEntry();
3606 buildCounterOrdersCustomBatchResponseEntry++; 3606 buildCounterOrdersCustomBatchResponseEntry++;
3607 if (buildCounterOrdersCustomBatchResponseEntry < 3) { 3607 if (buildCounterOrdersCustomBatchResponseEntry < 3) {
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
3662 3662
3663 checkOrdersGetTestOrderTemplateResponse(api.OrdersGetTestOrderTemplateResponse o ) { 3663 checkOrdersGetTestOrderTemplateResponse(api.OrdersGetTestOrderTemplateResponse o ) {
3664 buildCounterOrdersGetTestOrderTemplateResponse++; 3664 buildCounterOrdersGetTestOrderTemplateResponse++;
3665 if (buildCounterOrdersGetTestOrderTemplateResponse < 3) { 3665 if (buildCounterOrdersGetTestOrderTemplateResponse < 3) {
3666 unittest.expect(o.kind, unittest.equals('foo')); 3666 unittest.expect(o.kind, unittest.equals('foo'));
3667 checkTestOrder(o.template); 3667 checkTestOrder(o.template);
3668 } 3668 }
3669 buildCounterOrdersGetTestOrderTemplateResponse--; 3669 buildCounterOrdersGetTestOrderTemplateResponse--;
3670 } 3670 }
3671 3671
3672 buildUnnamed575() { 3672 buildUnnamed314() {
3673 var o = new core.List<api.Order>(); 3673 var o = new core.List<api.Order>();
3674 o.add(buildOrder()); 3674 o.add(buildOrder());
3675 o.add(buildOrder()); 3675 o.add(buildOrder());
3676 return o; 3676 return o;
3677 } 3677 }
3678 3678
3679 checkUnnamed575(core.List<api.Order> o) { 3679 checkUnnamed314(core.List<api.Order> o) {
3680 unittest.expect(o, unittest.hasLength(2)); 3680 unittest.expect(o, unittest.hasLength(2));
3681 checkOrder(o[0]); 3681 checkOrder(o[0]);
3682 checkOrder(o[1]); 3682 checkOrder(o[1]);
3683 } 3683 }
3684 3684
3685 core.int buildCounterOrdersListResponse = 0; 3685 core.int buildCounterOrdersListResponse = 0;
3686 buildOrdersListResponse() { 3686 buildOrdersListResponse() {
3687 var o = new api.OrdersListResponse(); 3687 var o = new api.OrdersListResponse();
3688 buildCounterOrdersListResponse++; 3688 buildCounterOrdersListResponse++;
3689 if (buildCounterOrdersListResponse < 3) { 3689 if (buildCounterOrdersListResponse < 3) {
3690 o.kind = "foo"; 3690 o.kind = "foo";
3691 o.nextPageToken = "foo"; 3691 o.nextPageToken = "foo";
3692 o.resources = buildUnnamed575(); 3692 o.resources = buildUnnamed314();
3693 } 3693 }
3694 buildCounterOrdersListResponse--; 3694 buildCounterOrdersListResponse--;
3695 return o; 3695 return o;
3696 } 3696 }
3697 3697
3698 checkOrdersListResponse(api.OrdersListResponse o) { 3698 checkOrdersListResponse(api.OrdersListResponse o) {
3699 buildCounterOrdersListResponse++; 3699 buildCounterOrdersListResponse++;
3700 if (buildCounterOrdersListResponse < 3) { 3700 if (buildCounterOrdersListResponse < 3) {
3701 unittest.expect(o.kind, unittest.equals('foo')); 3701 unittest.expect(o.kind, unittest.equals('foo'));
3702 unittest.expect(o.nextPageToken, unittest.equals('foo')); 3702 unittest.expect(o.nextPageToken, unittest.equals('foo'));
3703 checkUnnamed575(o.resources); 3703 checkUnnamed314(o.resources);
3704 } 3704 }
3705 buildCounterOrdersListResponse--; 3705 buildCounterOrdersListResponse--;
3706 } 3706 }
3707 3707
3708 core.int buildCounterOrdersRefundRequest = 0; 3708 core.int buildCounterOrdersRefundRequest = 0;
3709 buildOrdersRefundRequest() { 3709 buildOrdersRefundRequest() {
3710 var o = new api.OrdersRefundRequest(); 3710 var o = new api.OrdersRefundRequest();
3711 buildCounterOrdersRefundRequest++; 3711 buildCounterOrdersRefundRequest++;
3712 if (buildCounterOrdersRefundRequest < 3) { 3712 if (buildCounterOrdersRefundRequest < 3) {
3713 o.amount = buildPrice(); 3713 o.amount = buildPrice();
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
3792 3792
3793 checkOrdersReturnLineItemResponse(api.OrdersReturnLineItemResponse o) { 3793 checkOrdersReturnLineItemResponse(api.OrdersReturnLineItemResponse o) {
3794 buildCounterOrdersReturnLineItemResponse++; 3794 buildCounterOrdersReturnLineItemResponse++;
3795 if (buildCounterOrdersReturnLineItemResponse < 3) { 3795 if (buildCounterOrdersReturnLineItemResponse < 3) {
3796 unittest.expect(o.executionStatus, unittest.equals('foo')); 3796 unittest.expect(o.executionStatus, unittest.equals('foo'));
3797 unittest.expect(o.kind, unittest.equals('foo')); 3797 unittest.expect(o.kind, unittest.equals('foo'));
3798 } 3798 }
3799 buildCounterOrdersReturnLineItemResponse--; 3799 buildCounterOrdersReturnLineItemResponse--;
3800 } 3800 }
3801 3801
3802 buildUnnamed576() { 3802 buildUnnamed315() {
3803 var o = new core.List<api.OrderShipmentLineItemShipment>(); 3803 var o = new core.List<api.OrderShipmentLineItemShipment>();
3804 o.add(buildOrderShipmentLineItemShipment()); 3804 o.add(buildOrderShipmentLineItemShipment());
3805 o.add(buildOrderShipmentLineItemShipment()); 3805 o.add(buildOrderShipmentLineItemShipment());
3806 return o; 3806 return o;
3807 } 3807 }
3808 3808
3809 checkUnnamed576(core.List<api.OrderShipmentLineItemShipment> o) { 3809 checkUnnamed315(core.List<api.OrderShipmentLineItemShipment> o) {
3810 unittest.expect(o, unittest.hasLength(2)); 3810 unittest.expect(o, unittest.hasLength(2));
3811 checkOrderShipmentLineItemShipment(o[0]); 3811 checkOrderShipmentLineItemShipment(o[0]);
3812 checkOrderShipmentLineItemShipment(o[1]); 3812 checkOrderShipmentLineItemShipment(o[1]);
3813 } 3813 }
3814 3814
3815 core.int buildCounterOrdersShipLineItemsRequest = 0; 3815 core.int buildCounterOrdersShipLineItemsRequest = 0;
3816 buildOrdersShipLineItemsRequest() { 3816 buildOrdersShipLineItemsRequest() {
3817 var o = new api.OrdersShipLineItemsRequest(); 3817 var o = new api.OrdersShipLineItemsRequest();
3818 buildCounterOrdersShipLineItemsRequest++; 3818 buildCounterOrdersShipLineItemsRequest++;
3819 if (buildCounterOrdersShipLineItemsRequest < 3) { 3819 if (buildCounterOrdersShipLineItemsRequest < 3) {
3820 o.carrier = "foo"; 3820 o.carrier = "foo";
3821 o.lineItems = buildUnnamed576(); 3821 o.lineItems = buildUnnamed315();
3822 o.operationId = "foo"; 3822 o.operationId = "foo";
3823 o.shipmentId = "foo"; 3823 o.shipmentId = "foo";
3824 o.trackingId = "foo"; 3824 o.trackingId = "foo";
3825 } 3825 }
3826 buildCounterOrdersShipLineItemsRequest--; 3826 buildCounterOrdersShipLineItemsRequest--;
3827 return o; 3827 return o;
3828 } 3828 }
3829 3829
3830 checkOrdersShipLineItemsRequest(api.OrdersShipLineItemsRequest o) { 3830 checkOrdersShipLineItemsRequest(api.OrdersShipLineItemsRequest o) {
3831 buildCounterOrdersShipLineItemsRequest++; 3831 buildCounterOrdersShipLineItemsRequest++;
3832 if (buildCounterOrdersShipLineItemsRequest < 3) { 3832 if (buildCounterOrdersShipLineItemsRequest < 3) {
3833 unittest.expect(o.carrier, unittest.equals('foo')); 3833 unittest.expect(o.carrier, unittest.equals('foo'));
3834 checkUnnamed576(o.lineItems); 3834 checkUnnamed315(o.lineItems);
3835 unittest.expect(o.operationId, unittest.equals('foo')); 3835 unittest.expect(o.operationId, unittest.equals('foo'));
3836 unittest.expect(o.shipmentId, unittest.equals('foo')); 3836 unittest.expect(o.shipmentId, unittest.equals('foo'));
3837 unittest.expect(o.trackingId, unittest.equals('foo')); 3837 unittest.expect(o.trackingId, unittest.equals('foo'));
3838 } 3838 }
3839 buildCounterOrdersShipLineItemsRequest--; 3839 buildCounterOrdersShipLineItemsRequest--;
3840 } 3840 }
3841 3841
3842 core.int buildCounterOrdersShipLineItemsResponse = 0; 3842 core.int buildCounterOrdersShipLineItemsResponse = 0;
3843 buildOrdersShipLineItemsResponse() { 3843 buildOrdersShipLineItemsResponse() {
3844 var o = new api.OrdersShipLineItemsResponse(); 3844 var o = new api.OrdersShipLineItemsResponse();
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
3943 3943
3944 checkOrdersUpdateShipmentResponse(api.OrdersUpdateShipmentResponse o) { 3944 checkOrdersUpdateShipmentResponse(api.OrdersUpdateShipmentResponse o) {
3945 buildCounterOrdersUpdateShipmentResponse++; 3945 buildCounterOrdersUpdateShipmentResponse++;
3946 if (buildCounterOrdersUpdateShipmentResponse < 3) { 3946 if (buildCounterOrdersUpdateShipmentResponse < 3) {
3947 unittest.expect(o.executionStatus, unittest.equals('foo')); 3947 unittest.expect(o.executionStatus, unittest.equals('foo'));
3948 unittest.expect(o.kind, unittest.equals('foo')); 3948 unittest.expect(o.kind, unittest.equals('foo'));
3949 } 3949 }
3950 buildCounterOrdersUpdateShipmentResponse--; 3950 buildCounterOrdersUpdateShipmentResponse--;
3951 } 3951 }
3952 3952
3953 buildUnnamed577() { 3953 buildUnnamed316() {
3954 var o = new core.List<api.PostalCodeRange>(); 3954 var o = new core.List<api.PostalCodeRange>();
3955 o.add(buildPostalCodeRange()); 3955 o.add(buildPostalCodeRange());
3956 o.add(buildPostalCodeRange()); 3956 o.add(buildPostalCodeRange());
3957 return o; 3957 return o;
3958 } 3958 }
3959 3959
3960 checkUnnamed577(core.List<api.PostalCodeRange> o) { 3960 checkUnnamed316(core.List<api.PostalCodeRange> o) {
3961 unittest.expect(o, unittest.hasLength(2)); 3961 unittest.expect(o, unittest.hasLength(2));
3962 checkPostalCodeRange(o[0]); 3962 checkPostalCodeRange(o[0]);
3963 checkPostalCodeRange(o[1]); 3963 checkPostalCodeRange(o[1]);
3964 } 3964 }
3965 3965
3966 core.int buildCounterPostalCodeGroup = 0; 3966 core.int buildCounterPostalCodeGroup = 0;
3967 buildPostalCodeGroup() { 3967 buildPostalCodeGroup() {
3968 var o = new api.PostalCodeGroup(); 3968 var o = new api.PostalCodeGroup();
3969 buildCounterPostalCodeGroup++; 3969 buildCounterPostalCodeGroup++;
3970 if (buildCounterPostalCodeGroup < 3) { 3970 if (buildCounterPostalCodeGroup < 3) {
3971 o.country = "foo"; 3971 o.country = "foo";
3972 o.name = "foo"; 3972 o.name = "foo";
3973 o.postalCodeRanges = buildUnnamed577(); 3973 o.postalCodeRanges = buildUnnamed316();
3974 } 3974 }
3975 buildCounterPostalCodeGroup--; 3975 buildCounterPostalCodeGroup--;
3976 return o; 3976 return o;
3977 } 3977 }
3978 3978
3979 checkPostalCodeGroup(api.PostalCodeGroup o) { 3979 checkPostalCodeGroup(api.PostalCodeGroup o) {
3980 buildCounterPostalCodeGroup++; 3980 buildCounterPostalCodeGroup++;
3981 if (buildCounterPostalCodeGroup < 3) { 3981 if (buildCounterPostalCodeGroup < 3) {
3982 unittest.expect(o.country, unittest.equals('foo')); 3982 unittest.expect(o.country, unittest.equals('foo'));
3983 unittest.expect(o.name, unittest.equals('foo')); 3983 unittest.expect(o.name, unittest.equals('foo'));
3984 checkUnnamed577(o.postalCodeRanges); 3984 checkUnnamed316(o.postalCodeRanges);
3985 } 3985 }
3986 buildCounterPostalCodeGroup--; 3986 buildCounterPostalCodeGroup--;
3987 } 3987 }
3988 3988
3989 core.int buildCounterPostalCodeRange = 0; 3989 core.int buildCounterPostalCodeRange = 0;
3990 buildPostalCodeRange() { 3990 buildPostalCodeRange() {
3991 var o = new api.PostalCodeRange(); 3991 var o = new api.PostalCodeRange();
3992 buildCounterPostalCodeRange++; 3992 buildCounterPostalCodeRange++;
3993 if (buildCounterPostalCodeRange < 3) { 3993 if (buildCounterPostalCodeRange < 3) {
3994 o.postalCodeRangeBegin = "foo"; 3994 o.postalCodeRangeBegin = "foo";
(...skipping 26 matching lines...) Expand all
4021 4021
4022 checkPrice(api.Price o) { 4022 checkPrice(api.Price o) {
4023 buildCounterPrice++; 4023 buildCounterPrice++;
4024 if (buildCounterPrice < 3) { 4024 if (buildCounterPrice < 3) {
4025 unittest.expect(o.currency, unittest.equals('foo')); 4025 unittest.expect(o.currency, unittest.equals('foo'));
4026 unittest.expect(o.value, unittest.equals('foo')); 4026 unittest.expect(o.value, unittest.equals('foo'));
4027 } 4027 }
4028 buildCounterPrice--; 4028 buildCounterPrice--;
4029 } 4029 }
4030 4030
4031 buildUnnamed578() { 4031 buildUnnamed317() {
4032 var o = new core.List<core.String>(); 4032 var o = new core.List<core.String>();
4033 o.add("foo"); 4033 o.add("foo");
4034 o.add("foo"); 4034 o.add("foo");
4035 return o; 4035 return o;
4036 } 4036 }
4037 4037
4038 checkUnnamed578(core.List<core.String> o) { 4038 checkUnnamed317(core.List<core.String> o) {
4039 unittest.expect(o, unittest.hasLength(2)); 4039 unittest.expect(o, unittest.hasLength(2));
4040 unittest.expect(o[0], unittest.equals('foo')); 4040 unittest.expect(o[0], unittest.equals('foo'));
4041 unittest.expect(o[1], unittest.equals('foo')); 4041 unittest.expect(o[1], unittest.equals('foo'));
4042 } 4042 }
4043 4043
4044 buildUnnamed579() { 4044 buildUnnamed318() {
4045 var o = new core.List<core.String>(); 4045 var o = new core.List<core.String>();
4046 o.add("foo"); 4046 o.add("foo");
4047 o.add("foo"); 4047 o.add("foo");
4048 return o; 4048 return o;
4049 } 4049 }
4050 4050
4051 checkUnnamed579(core.List<core.String> o) { 4051 checkUnnamed318(core.List<core.String> o) {
4052 unittest.expect(o, unittest.hasLength(2)); 4052 unittest.expect(o, unittest.hasLength(2));
4053 unittest.expect(o[0], unittest.equals('foo')); 4053 unittest.expect(o[0], unittest.equals('foo'));
4054 unittest.expect(o[1], unittest.equals('foo')); 4054 unittest.expect(o[1], unittest.equals('foo'));
4055 } 4055 }
4056 4056
4057 buildUnnamed580() { 4057 buildUnnamed319() {
4058 var o = new core.List<core.String>(); 4058 var o = new core.List<core.String>();
4059 o.add("foo"); 4059 o.add("foo");
4060 o.add("foo"); 4060 o.add("foo");
4061 return o; 4061 return o;
4062 } 4062 }
4063 4063
4064 checkUnnamed580(core.List<core.String> o) { 4064 checkUnnamed319(core.List<core.String> o) {
4065 unittest.expect(o, unittest.hasLength(2)); 4065 unittest.expect(o, unittest.hasLength(2));
4066 unittest.expect(o[0], unittest.equals('foo')); 4066 unittest.expect(o[0], unittest.equals('foo'));
4067 unittest.expect(o[1], unittest.equals('foo')); 4067 unittest.expect(o[1], unittest.equals('foo'));
4068 } 4068 }
4069 4069
4070 buildUnnamed581() { 4070 buildUnnamed320() {
4071 var o = new core.List<api.ProductAspect>(); 4071 var o = new core.List<api.ProductAspect>();
4072 o.add(buildProductAspect()); 4072 o.add(buildProductAspect());
4073 o.add(buildProductAspect()); 4073 o.add(buildProductAspect());
4074 return o; 4074 return o;
4075 } 4075 }
4076 4076
4077 checkUnnamed581(core.List<api.ProductAspect> o) { 4077 checkUnnamed320(core.List<api.ProductAspect> o) {
4078 unittest.expect(o, unittest.hasLength(2)); 4078 unittest.expect(o, unittest.hasLength(2));
4079 checkProductAspect(o[0]); 4079 checkProductAspect(o[0]);
4080 checkProductAspect(o[1]); 4080 checkProductAspect(o[1]);
4081 } 4081 }
4082 4082
4083 buildUnnamed582() { 4083 buildUnnamed321() {
4084 var o = new core.List<api.ProductCustomAttribute>(); 4084 var o = new core.List<api.ProductCustomAttribute>();
4085 o.add(buildProductCustomAttribute()); 4085 o.add(buildProductCustomAttribute());
4086 o.add(buildProductCustomAttribute()); 4086 o.add(buildProductCustomAttribute());
4087 return o; 4087 return o;
4088 } 4088 }
4089 4089
4090 checkUnnamed582(core.List<api.ProductCustomAttribute> o) { 4090 checkUnnamed321(core.List<api.ProductCustomAttribute> o) {
4091 unittest.expect(o, unittest.hasLength(2)); 4091 unittest.expect(o, unittest.hasLength(2));
4092 checkProductCustomAttribute(o[0]); 4092 checkProductCustomAttribute(o[0]);
4093 checkProductCustomAttribute(o[1]); 4093 checkProductCustomAttribute(o[1]);
4094 } 4094 }
4095 4095
4096 buildUnnamed583() { 4096 buildUnnamed322() {
4097 var o = new core.List<api.ProductCustomGroup>(); 4097 var o = new core.List<api.ProductCustomGroup>();
4098 o.add(buildProductCustomGroup()); 4098 o.add(buildProductCustomGroup());
4099 o.add(buildProductCustomGroup()); 4099 o.add(buildProductCustomGroup());
4100 return o; 4100 return o;
4101 } 4101 }
4102 4102
4103 checkUnnamed583(core.List<api.ProductCustomGroup> o) { 4103 checkUnnamed322(core.List<api.ProductCustomGroup> o) {
4104 unittest.expect(o, unittest.hasLength(2)); 4104 unittest.expect(o, unittest.hasLength(2));
4105 checkProductCustomGroup(o[0]); 4105 checkProductCustomGroup(o[0]);
4106 checkProductCustomGroup(o[1]); 4106 checkProductCustomGroup(o[1]);
4107 } 4107 }
4108 4108
4109 buildUnnamed584() { 4109 buildUnnamed323() {
4110 var o = new core.List<api.ProductDestination>(); 4110 var o = new core.List<api.ProductDestination>();
4111 o.add(buildProductDestination()); 4111 o.add(buildProductDestination());
4112 o.add(buildProductDestination()); 4112 o.add(buildProductDestination());
4113 return o; 4113 return o;
4114 } 4114 }
4115 4115
4116 checkUnnamed584(core.List<api.ProductDestination> o) { 4116 checkUnnamed323(core.List<api.ProductDestination> o) {
4117 unittest.expect(o, unittest.hasLength(2)); 4117 unittest.expect(o, unittest.hasLength(2));
4118 checkProductDestination(o[0]); 4118 checkProductDestination(o[0]);
4119 checkProductDestination(o[1]); 4119 checkProductDestination(o[1]);
4120 } 4120 }
4121 4121
4122 buildUnnamed585() { 4122 buildUnnamed324() {
4123 var o = new core.List<core.String>(); 4123 var o = new core.List<core.String>();
4124 o.add("foo"); 4124 o.add("foo");
4125 o.add("foo"); 4125 o.add("foo");
4126 return o; 4126 return o;
4127 } 4127 }
4128 4128
4129 checkUnnamed585(core.List<core.String> o) { 4129 checkUnnamed324(core.List<core.String> o) {
4130 unittest.expect(o, unittest.hasLength(2)); 4130 unittest.expect(o, unittest.hasLength(2));
4131 unittest.expect(o[0], unittest.equals('foo')); 4131 unittest.expect(o[0], unittest.equals('foo'));
4132 unittest.expect(o[1], unittest.equals('foo')); 4132 unittest.expect(o[1], unittest.equals('foo'));
4133 } 4133 }
4134 4134
4135 buildUnnamed586() { 4135 buildUnnamed325() {
4136 var o = new core.List<core.String>(); 4136 var o = new core.List<core.String>();
4137 o.add("foo"); 4137 o.add("foo");
4138 o.add("foo"); 4138 o.add("foo");
4139 return o; 4139 return o;
4140 } 4140 }
4141 4141
4142 checkUnnamed586(core.List<core.String> o) { 4142 checkUnnamed325(core.List<core.String> o) {
4143 unittest.expect(o, unittest.hasLength(2)); 4143 unittest.expect(o, unittest.hasLength(2));
4144 unittest.expect(o[0], unittest.equals('foo')); 4144 unittest.expect(o[0], unittest.equals('foo'));
4145 unittest.expect(o[1], unittest.equals('foo')); 4145 unittest.expect(o[1], unittest.equals('foo'));
4146 } 4146 }
4147 4147
4148 buildUnnamed587() { 4148 buildUnnamed326() {
4149 var o = new core.List<api.ProductShipping>(); 4149 var o = new core.List<api.ProductShipping>();
4150 o.add(buildProductShipping()); 4150 o.add(buildProductShipping());
4151 o.add(buildProductShipping()); 4151 o.add(buildProductShipping());
4152 return o; 4152 return o;
4153 } 4153 }
4154 4154
4155 checkUnnamed587(core.List<api.ProductShipping> o) { 4155 checkUnnamed326(core.List<api.ProductShipping> o) {
4156 unittest.expect(o, unittest.hasLength(2)); 4156 unittest.expect(o, unittest.hasLength(2));
4157 checkProductShipping(o[0]); 4157 checkProductShipping(o[0]);
4158 checkProductShipping(o[1]); 4158 checkProductShipping(o[1]);
4159 } 4159 }
4160 4160
4161 buildUnnamed588() { 4161 buildUnnamed327() {
4162 var o = new core.List<core.String>(); 4162 var o = new core.List<core.String>();
4163 o.add("foo"); 4163 o.add("foo");
4164 o.add("foo"); 4164 o.add("foo");
4165 return o; 4165 return o;
4166 } 4166 }
4167 4167
4168 checkUnnamed588(core.List<core.String> o) { 4168 checkUnnamed327(core.List<core.String> o) {
4169 unittest.expect(o, unittest.hasLength(2)); 4169 unittest.expect(o, unittest.hasLength(2));
4170 unittest.expect(o[0], unittest.equals('foo')); 4170 unittest.expect(o[0], unittest.equals('foo'));
4171 unittest.expect(o[1], unittest.equals('foo')); 4171 unittest.expect(o[1], unittest.equals('foo'));
4172 } 4172 }
4173 4173
4174 buildUnnamed589() { 4174 buildUnnamed328() {
4175 var o = new core.List<api.ProductTax>(); 4175 var o = new core.List<api.ProductTax>();
4176 o.add(buildProductTax()); 4176 o.add(buildProductTax());
4177 o.add(buildProductTax()); 4177 o.add(buildProductTax());
4178 return o; 4178 return o;
4179 } 4179 }
4180 4180
4181 checkUnnamed589(core.List<api.ProductTax> o) { 4181 checkUnnamed328(core.List<api.ProductTax> o) {
4182 unittest.expect(o, unittest.hasLength(2)); 4182 unittest.expect(o, unittest.hasLength(2));
4183 checkProductTax(o[0]); 4183 checkProductTax(o[0]);
4184 checkProductTax(o[1]); 4184 checkProductTax(o[1]);
4185 } 4185 }
4186 4186
4187 buildUnnamed590() { 4187 buildUnnamed329() {
4188 var o = new core.List<core.String>(); 4188 var o = new core.List<core.String>();
4189 o.add("foo"); 4189 o.add("foo");
4190 o.add("foo"); 4190 o.add("foo");
4191 return o; 4191 return o;
4192 } 4192 }
4193 4193
4194 checkUnnamed590(core.List<core.String> o) { 4194 checkUnnamed329(core.List<core.String> o) {
4195 unittest.expect(o, unittest.hasLength(2)); 4195 unittest.expect(o, unittest.hasLength(2));
4196 unittest.expect(o[0], unittest.equals('foo')); 4196 unittest.expect(o[0], unittest.equals('foo'));
4197 unittest.expect(o[1], unittest.equals('foo')); 4197 unittest.expect(o[1], unittest.equals('foo'));
4198 } 4198 }
4199 4199
4200 buildUnnamed591() { 4200 buildUnnamed330() {
4201 var o = new core.List<api.Error>(); 4201 var o = new core.List<api.Error>();
4202 o.add(buildError()); 4202 o.add(buildError());
4203 o.add(buildError()); 4203 o.add(buildError());
4204 return o; 4204 return o;
4205 } 4205 }
4206 4206
4207 checkUnnamed591(core.List<api.Error> o) { 4207 checkUnnamed330(core.List<api.Error> o) {
4208 unittest.expect(o, unittest.hasLength(2)); 4208 unittest.expect(o, unittest.hasLength(2));
4209 checkError(o[0]); 4209 checkError(o[0]);
4210 checkError(o[1]); 4210 checkError(o[1]);
4211 } 4211 }
4212 4212
4213 core.int buildCounterProduct = 0; 4213 core.int buildCounterProduct = 0;
4214 buildProduct() { 4214 buildProduct() {
4215 var o = new api.Product(); 4215 var o = new api.Product();
4216 buildCounterProduct++; 4216 buildCounterProduct++;
4217 if (buildCounterProduct < 3) { 4217 if (buildCounterProduct < 3) {
4218 o.additionalImageLinks = buildUnnamed578(); 4218 o.additionalImageLinks = buildUnnamed317();
4219 o.additionalProductTypes = buildUnnamed579(); 4219 o.additionalProductTypes = buildUnnamed318();
4220 o.adult = true; 4220 o.adult = true;
4221 o.adwordsGrouping = "foo"; 4221 o.adwordsGrouping = "foo";
4222 o.adwordsLabels = buildUnnamed580(); 4222 o.adwordsLabels = buildUnnamed319();
4223 o.adwordsRedirect = "foo"; 4223 o.adwordsRedirect = "foo";
4224 o.ageGroup = "foo"; 4224 o.ageGroup = "foo";
4225 o.aspects = buildUnnamed581(); 4225 o.aspects = buildUnnamed320();
4226 o.availability = "foo"; 4226 o.availability = "foo";
4227 o.availabilityDate = "foo"; 4227 o.availabilityDate = "foo";
4228 o.brand = "foo"; 4228 o.brand = "foo";
4229 o.channel = "foo"; 4229 o.channel = "foo";
4230 o.color = "foo"; 4230 o.color = "foo";
4231 o.condition = "foo"; 4231 o.condition = "foo";
4232 o.contentLanguage = "foo"; 4232 o.contentLanguage = "foo";
4233 o.customAttributes = buildUnnamed582(); 4233 o.customAttributes = buildUnnamed321();
4234 o.customGroups = buildUnnamed583(); 4234 o.customGroups = buildUnnamed322();
4235 o.customLabel0 = "foo"; 4235 o.customLabel0 = "foo";
4236 o.customLabel1 = "foo"; 4236 o.customLabel1 = "foo";
4237 o.customLabel2 = "foo"; 4237 o.customLabel2 = "foo";
4238 o.customLabel3 = "foo"; 4238 o.customLabel3 = "foo";
4239 o.customLabel4 = "foo"; 4239 o.customLabel4 = "foo";
4240 o.description = "foo"; 4240 o.description = "foo";
4241 o.destinations = buildUnnamed584(); 4241 o.destinations = buildUnnamed323();
4242 o.displayAdsId = "foo"; 4242 o.displayAdsId = "foo";
4243 o.displayAdsLink = "foo"; 4243 o.displayAdsLink = "foo";
4244 o.displayAdsSimilarIds = buildUnnamed585(); 4244 o.displayAdsSimilarIds = buildUnnamed324();
4245 o.displayAdsTitle = "foo"; 4245 o.displayAdsTitle = "foo";
4246 o.displayAdsValue = 42.0; 4246 o.displayAdsValue = 42.0;
4247 o.energyEfficiencyClass = "foo"; 4247 o.energyEfficiencyClass = "foo";
4248 o.expirationDate = "foo"; 4248 o.expirationDate = "foo";
4249 o.gender = "foo"; 4249 o.gender = "foo";
4250 o.googleProductCategory = "foo"; 4250 o.googleProductCategory = "foo";
4251 o.gtin = "foo"; 4251 o.gtin = "foo";
4252 o.id = "foo"; 4252 o.id = "foo";
4253 o.identifierExists = true; 4253 o.identifierExists = true;
4254 o.imageLink = "foo"; 4254 o.imageLink = "foo";
4255 o.installment = buildInstallment(); 4255 o.installment = buildInstallment();
4256 o.isBundle = true; 4256 o.isBundle = true;
4257 o.itemGroupId = "foo"; 4257 o.itemGroupId = "foo";
4258 o.kind = "foo"; 4258 o.kind = "foo";
4259 o.link = "foo"; 4259 o.link = "foo";
4260 o.loyaltyPoints = buildLoyaltyPoints(); 4260 o.loyaltyPoints = buildLoyaltyPoints();
4261 o.material = "foo"; 4261 o.material = "foo";
4262 o.mobileLink = "foo"; 4262 o.mobileLink = "foo";
4263 o.mpn = "foo"; 4263 o.mpn = "foo";
4264 o.multipack = "foo"; 4264 o.multipack = "foo";
4265 o.offerId = "foo"; 4265 o.offerId = "foo";
4266 o.onlineOnly = true; 4266 o.onlineOnly = true;
4267 o.pattern = "foo"; 4267 o.pattern = "foo";
4268 o.price = buildPrice(); 4268 o.price = buildPrice();
4269 o.productType = "foo"; 4269 o.productType = "foo";
4270 o.promotionIds = buildUnnamed586(); 4270 o.promotionIds = buildUnnamed325();
4271 o.salePrice = buildPrice(); 4271 o.salePrice = buildPrice();
4272 o.salePriceEffectiveDate = "foo"; 4272 o.salePriceEffectiveDate = "foo";
4273 o.sellOnGoogleQuantity = "foo"; 4273 o.sellOnGoogleQuantity = "foo";
4274 o.shipping = buildUnnamed587(); 4274 o.shipping = buildUnnamed326();
4275 o.shippingHeight = buildProductShippingDimension(); 4275 o.shippingHeight = buildProductShippingDimension();
4276 o.shippingLabel = "foo"; 4276 o.shippingLabel = "foo";
4277 o.shippingLength = buildProductShippingDimension(); 4277 o.shippingLength = buildProductShippingDimension();
4278 o.shippingWeight = buildProductShippingWeight(); 4278 o.shippingWeight = buildProductShippingWeight();
4279 o.shippingWidth = buildProductShippingDimension(); 4279 o.shippingWidth = buildProductShippingDimension();
4280 o.sizeSystem = "foo"; 4280 o.sizeSystem = "foo";
4281 o.sizeType = "foo"; 4281 o.sizeType = "foo";
4282 o.sizes = buildUnnamed588(); 4282 o.sizes = buildUnnamed327();
4283 o.targetCountry = "foo"; 4283 o.targetCountry = "foo";
4284 o.taxes = buildUnnamed589(); 4284 o.taxes = buildUnnamed328();
4285 o.title = "foo"; 4285 o.title = "foo";
4286 o.unitPricingBaseMeasure = buildProductUnitPricingBaseMeasure(); 4286 o.unitPricingBaseMeasure = buildProductUnitPricingBaseMeasure();
4287 o.unitPricingMeasure = buildProductUnitPricingMeasure(); 4287 o.unitPricingMeasure = buildProductUnitPricingMeasure();
4288 o.validatedDestinations = buildUnnamed590(); 4288 o.validatedDestinations = buildUnnamed329();
4289 o.warnings = buildUnnamed591(); 4289 o.warnings = buildUnnamed330();
4290 } 4290 }
4291 buildCounterProduct--; 4291 buildCounterProduct--;
4292 return o; 4292 return o;
4293 } 4293 }
4294 4294
4295 checkProduct(api.Product o) { 4295 checkProduct(api.Product o) {
4296 buildCounterProduct++; 4296 buildCounterProduct++;
4297 if (buildCounterProduct < 3) { 4297 if (buildCounterProduct < 3) {
4298 checkUnnamed578(o.additionalImageLinks); 4298 checkUnnamed317(o.additionalImageLinks);
4299 checkUnnamed579(o.additionalProductTypes); 4299 checkUnnamed318(o.additionalProductTypes);
4300 unittest.expect(o.adult, unittest.isTrue); 4300 unittest.expect(o.adult, unittest.isTrue);
4301 unittest.expect(o.adwordsGrouping, unittest.equals('foo')); 4301 unittest.expect(o.adwordsGrouping, unittest.equals('foo'));
4302 checkUnnamed580(o.adwordsLabels); 4302 checkUnnamed319(o.adwordsLabels);
4303 unittest.expect(o.adwordsRedirect, unittest.equals('foo')); 4303 unittest.expect(o.adwordsRedirect, unittest.equals('foo'));
4304 unittest.expect(o.ageGroup, unittest.equals('foo')); 4304 unittest.expect(o.ageGroup, unittest.equals('foo'));
4305 checkUnnamed581(o.aspects); 4305 checkUnnamed320(o.aspects);
4306 unittest.expect(o.availability, unittest.equals('foo')); 4306 unittest.expect(o.availability, unittest.equals('foo'));
4307 unittest.expect(o.availabilityDate, unittest.equals('foo')); 4307 unittest.expect(o.availabilityDate, unittest.equals('foo'));
4308 unittest.expect(o.brand, unittest.equals('foo')); 4308 unittest.expect(o.brand, unittest.equals('foo'));
4309 unittest.expect(o.channel, unittest.equals('foo')); 4309 unittest.expect(o.channel, unittest.equals('foo'));
4310 unittest.expect(o.color, unittest.equals('foo')); 4310 unittest.expect(o.color, unittest.equals('foo'));
4311 unittest.expect(o.condition, unittest.equals('foo')); 4311 unittest.expect(o.condition, unittest.equals('foo'));
4312 unittest.expect(o.contentLanguage, unittest.equals('foo')); 4312 unittest.expect(o.contentLanguage, unittest.equals('foo'));
4313 checkUnnamed582(o.customAttributes); 4313 checkUnnamed321(o.customAttributes);
4314 checkUnnamed583(o.customGroups); 4314 checkUnnamed322(o.customGroups);
4315 unittest.expect(o.customLabel0, unittest.equals('foo')); 4315 unittest.expect(o.customLabel0, unittest.equals('foo'));
4316 unittest.expect(o.customLabel1, unittest.equals('foo')); 4316 unittest.expect(o.customLabel1, unittest.equals('foo'));
4317 unittest.expect(o.customLabel2, unittest.equals('foo')); 4317 unittest.expect(o.customLabel2, unittest.equals('foo'));
4318 unittest.expect(o.customLabel3, unittest.equals('foo')); 4318 unittest.expect(o.customLabel3, unittest.equals('foo'));
4319 unittest.expect(o.customLabel4, unittest.equals('foo')); 4319 unittest.expect(o.customLabel4, unittest.equals('foo'));
4320 unittest.expect(o.description, unittest.equals('foo')); 4320 unittest.expect(o.description, unittest.equals('foo'));
4321 checkUnnamed584(o.destinations); 4321 checkUnnamed323(o.destinations);
4322 unittest.expect(o.displayAdsId, unittest.equals('foo')); 4322 unittest.expect(o.displayAdsId, unittest.equals('foo'));
4323 unittest.expect(o.displayAdsLink, unittest.equals('foo')); 4323 unittest.expect(o.displayAdsLink, unittest.equals('foo'));
4324 checkUnnamed585(o.displayAdsSimilarIds); 4324 checkUnnamed324(o.displayAdsSimilarIds);
4325 unittest.expect(o.displayAdsTitle, unittest.equals('foo')); 4325 unittest.expect(o.displayAdsTitle, unittest.equals('foo'));
4326 unittest.expect(o.displayAdsValue, unittest.equals(42.0)); 4326 unittest.expect(o.displayAdsValue, unittest.equals(42.0));
4327 unittest.expect(o.energyEfficiencyClass, unittest.equals('foo')); 4327 unittest.expect(o.energyEfficiencyClass, unittest.equals('foo'));
4328 unittest.expect(o.expirationDate, unittest.equals('foo')); 4328 unittest.expect(o.expirationDate, unittest.equals('foo'));
4329 unittest.expect(o.gender, unittest.equals('foo')); 4329 unittest.expect(o.gender, unittest.equals('foo'));
4330 unittest.expect(o.googleProductCategory, unittest.equals('foo')); 4330 unittest.expect(o.googleProductCategory, unittest.equals('foo'));
4331 unittest.expect(o.gtin, unittest.equals('foo')); 4331 unittest.expect(o.gtin, unittest.equals('foo'));
4332 unittest.expect(o.id, unittest.equals('foo')); 4332 unittest.expect(o.id, unittest.equals('foo'));
4333 unittest.expect(o.identifierExists, unittest.isTrue); 4333 unittest.expect(o.identifierExists, unittest.isTrue);
4334 unittest.expect(o.imageLink, unittest.equals('foo')); 4334 unittest.expect(o.imageLink, unittest.equals('foo'));
4335 checkInstallment(o.installment); 4335 checkInstallment(o.installment);
4336 unittest.expect(o.isBundle, unittest.isTrue); 4336 unittest.expect(o.isBundle, unittest.isTrue);
4337 unittest.expect(o.itemGroupId, unittest.equals('foo')); 4337 unittest.expect(o.itemGroupId, unittest.equals('foo'));
4338 unittest.expect(o.kind, unittest.equals('foo')); 4338 unittest.expect(o.kind, unittest.equals('foo'));
4339 unittest.expect(o.link, unittest.equals('foo')); 4339 unittest.expect(o.link, unittest.equals('foo'));
4340 checkLoyaltyPoints(o.loyaltyPoints); 4340 checkLoyaltyPoints(o.loyaltyPoints);
4341 unittest.expect(o.material, unittest.equals('foo')); 4341 unittest.expect(o.material, unittest.equals('foo'));
4342 unittest.expect(o.mobileLink, unittest.equals('foo')); 4342 unittest.expect(o.mobileLink, unittest.equals('foo'));
4343 unittest.expect(o.mpn, unittest.equals('foo')); 4343 unittest.expect(o.mpn, unittest.equals('foo'));
4344 unittest.expect(o.multipack, unittest.equals('foo')); 4344 unittest.expect(o.multipack, unittest.equals('foo'));
4345 unittest.expect(o.offerId, unittest.equals('foo')); 4345 unittest.expect(o.offerId, unittest.equals('foo'));
4346 unittest.expect(o.onlineOnly, unittest.isTrue); 4346 unittest.expect(o.onlineOnly, unittest.isTrue);
4347 unittest.expect(o.pattern, unittest.equals('foo')); 4347 unittest.expect(o.pattern, unittest.equals('foo'));
4348 checkPrice(o.price); 4348 checkPrice(o.price);
4349 unittest.expect(o.productType, unittest.equals('foo')); 4349 unittest.expect(o.productType, unittest.equals('foo'));
4350 checkUnnamed586(o.promotionIds); 4350 checkUnnamed325(o.promotionIds);
4351 checkPrice(o.salePrice); 4351 checkPrice(o.salePrice);
4352 unittest.expect(o.salePriceEffectiveDate, unittest.equals('foo')); 4352 unittest.expect(o.salePriceEffectiveDate, unittest.equals('foo'));
4353 unittest.expect(o.sellOnGoogleQuantity, unittest.equals('foo')); 4353 unittest.expect(o.sellOnGoogleQuantity, unittest.equals('foo'));
4354 checkUnnamed587(o.shipping); 4354 checkUnnamed326(o.shipping);
4355 checkProductShippingDimension(o.shippingHeight); 4355 checkProductShippingDimension(o.shippingHeight);
4356 unittest.expect(o.shippingLabel, unittest.equals('foo')); 4356 unittest.expect(o.shippingLabel, unittest.equals('foo'));
4357 checkProductShippingDimension(o.shippingLength); 4357 checkProductShippingDimension(o.shippingLength);
4358 checkProductShippingWeight(o.shippingWeight); 4358 checkProductShippingWeight(o.shippingWeight);
4359 checkProductShippingDimension(o.shippingWidth); 4359 checkProductShippingDimension(o.shippingWidth);
4360 unittest.expect(o.sizeSystem, unittest.equals('foo')); 4360 unittest.expect(o.sizeSystem, unittest.equals('foo'));
4361 unittest.expect(o.sizeType, unittest.equals('foo')); 4361 unittest.expect(o.sizeType, unittest.equals('foo'));
4362 checkUnnamed588(o.sizes); 4362 checkUnnamed327(o.sizes);
4363 unittest.expect(o.targetCountry, unittest.equals('foo')); 4363 unittest.expect(o.targetCountry, unittest.equals('foo'));
4364 checkUnnamed589(o.taxes); 4364 checkUnnamed328(o.taxes);
4365 unittest.expect(o.title, unittest.equals('foo')); 4365 unittest.expect(o.title, unittest.equals('foo'));
4366 checkProductUnitPricingBaseMeasure(o.unitPricingBaseMeasure); 4366 checkProductUnitPricingBaseMeasure(o.unitPricingBaseMeasure);
4367 checkProductUnitPricingMeasure(o.unitPricingMeasure); 4367 checkProductUnitPricingMeasure(o.unitPricingMeasure);
4368 checkUnnamed590(o.validatedDestinations); 4368 checkUnnamed329(o.validatedDestinations);
4369 checkUnnamed591(o.warnings); 4369 checkUnnamed330(o.warnings);
4370 } 4370 }
4371 buildCounterProduct--; 4371 buildCounterProduct--;
4372 } 4372 }
4373 4373
4374 core.int buildCounterProductAspect = 0; 4374 core.int buildCounterProductAspect = 0;
4375 buildProductAspect() { 4375 buildProductAspect() {
4376 var o = new api.ProductAspect(); 4376 var o = new api.ProductAspect();
4377 buildCounterProductAspect++; 4377 buildCounterProductAspect++;
4378 if (buildCounterProductAspect < 3) { 4378 if (buildCounterProductAspect < 3) {
4379 o.aspectName = "foo"; 4379 o.aspectName = "foo";
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
4412 buildCounterProductCustomAttribute++; 4412 buildCounterProductCustomAttribute++;
4413 if (buildCounterProductCustomAttribute < 3) { 4413 if (buildCounterProductCustomAttribute < 3) {
4414 unittest.expect(o.name, unittest.equals('foo')); 4414 unittest.expect(o.name, unittest.equals('foo'));
4415 unittest.expect(o.type, unittest.equals('foo')); 4415 unittest.expect(o.type, unittest.equals('foo'));
4416 unittest.expect(o.unit, unittest.equals('foo')); 4416 unittest.expect(o.unit, unittest.equals('foo'));
4417 unittest.expect(o.value, unittest.equals('foo')); 4417 unittest.expect(o.value, unittest.equals('foo'));
4418 } 4418 }
4419 buildCounterProductCustomAttribute--; 4419 buildCounterProductCustomAttribute--;
4420 } 4420 }
4421 4421
4422 buildUnnamed592() { 4422 buildUnnamed331() {
4423 var o = new core.List<api.ProductCustomAttribute>(); 4423 var o = new core.List<api.ProductCustomAttribute>();
4424 o.add(buildProductCustomAttribute()); 4424 o.add(buildProductCustomAttribute());
4425 o.add(buildProductCustomAttribute()); 4425 o.add(buildProductCustomAttribute());
4426 return o; 4426 return o;
4427 } 4427 }
4428 4428
4429 checkUnnamed592(core.List<api.ProductCustomAttribute> o) { 4429 checkUnnamed331(core.List<api.ProductCustomAttribute> o) {
4430 unittest.expect(o, unittest.hasLength(2)); 4430 unittest.expect(o, unittest.hasLength(2));
4431 checkProductCustomAttribute(o[0]); 4431 checkProductCustomAttribute(o[0]);
4432 checkProductCustomAttribute(o[1]); 4432 checkProductCustomAttribute(o[1]);
4433 } 4433 }
4434 4434
4435 core.int buildCounterProductCustomGroup = 0; 4435 core.int buildCounterProductCustomGroup = 0;
4436 buildProductCustomGroup() { 4436 buildProductCustomGroup() {
4437 var o = new api.ProductCustomGroup(); 4437 var o = new api.ProductCustomGroup();
4438 buildCounterProductCustomGroup++; 4438 buildCounterProductCustomGroup++;
4439 if (buildCounterProductCustomGroup < 3) { 4439 if (buildCounterProductCustomGroup < 3) {
4440 o.attributes = buildUnnamed592(); 4440 o.attributes = buildUnnamed331();
4441 o.name = "foo"; 4441 o.name = "foo";
4442 } 4442 }
4443 buildCounterProductCustomGroup--; 4443 buildCounterProductCustomGroup--;
4444 return o; 4444 return o;
4445 } 4445 }
4446 4446
4447 checkProductCustomGroup(api.ProductCustomGroup o) { 4447 checkProductCustomGroup(api.ProductCustomGroup o) {
4448 buildCounterProductCustomGroup++; 4448 buildCounterProductCustomGroup++;
4449 if (buildCounterProductCustomGroup < 3) { 4449 if (buildCounterProductCustomGroup < 3) {
4450 checkUnnamed592(o.attributes); 4450 checkUnnamed331(o.attributes);
4451 unittest.expect(o.name, unittest.equals('foo')); 4451 unittest.expect(o.name, unittest.equals('foo'));
4452 } 4452 }
4453 buildCounterProductCustomGroup--; 4453 buildCounterProductCustomGroup--;
4454 } 4454 }
4455 4455
4456 core.int buildCounterProductDestination = 0; 4456 core.int buildCounterProductDestination = 0;
4457 buildProductDestination() { 4457 buildProductDestination() {
4458 var o = new api.ProductDestination(); 4458 var o = new api.ProductDestination();
4459 buildCounterProductDestination++; 4459 buildCounterProductDestination++;
4460 if (buildCounterProductDestination < 3) { 4460 if (buildCounterProductDestination < 3) {
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
4540 4540
4541 checkProductShippingWeight(api.ProductShippingWeight o) { 4541 checkProductShippingWeight(api.ProductShippingWeight o) {
4542 buildCounterProductShippingWeight++; 4542 buildCounterProductShippingWeight++;
4543 if (buildCounterProductShippingWeight < 3) { 4543 if (buildCounterProductShippingWeight < 3) {
4544 unittest.expect(o.unit, unittest.equals('foo')); 4544 unittest.expect(o.unit, unittest.equals('foo'));
4545 unittest.expect(o.value, unittest.equals(42.0)); 4545 unittest.expect(o.value, unittest.equals(42.0));
4546 } 4546 }
4547 buildCounterProductShippingWeight--; 4547 buildCounterProductShippingWeight--;
4548 } 4548 }
4549 4549
4550 buildUnnamed593() { 4550 buildUnnamed332() {
4551 var o = new core.List<api.ProductStatusDataQualityIssue>(); 4551 var o = new core.List<api.ProductStatusDataQualityIssue>();
4552 o.add(buildProductStatusDataQualityIssue()); 4552 o.add(buildProductStatusDataQualityIssue());
4553 o.add(buildProductStatusDataQualityIssue()); 4553 o.add(buildProductStatusDataQualityIssue());
4554 return o; 4554 return o;
4555 } 4555 }
4556 4556
4557 checkUnnamed593(core.List<api.ProductStatusDataQualityIssue> o) { 4557 checkUnnamed332(core.List<api.ProductStatusDataQualityIssue> o) {
4558 unittest.expect(o, unittest.hasLength(2)); 4558 unittest.expect(o, unittest.hasLength(2));
4559 checkProductStatusDataQualityIssue(o[0]); 4559 checkProductStatusDataQualityIssue(o[0]);
4560 checkProductStatusDataQualityIssue(o[1]); 4560 checkProductStatusDataQualityIssue(o[1]);
4561 } 4561 }
4562 4562
4563 buildUnnamed594() { 4563 buildUnnamed333() {
4564 var o = new core.List<api.ProductStatusDestinationStatus>(); 4564 var o = new core.List<api.ProductStatusDestinationStatus>();
4565 o.add(buildProductStatusDestinationStatus()); 4565 o.add(buildProductStatusDestinationStatus());
4566 o.add(buildProductStatusDestinationStatus()); 4566 o.add(buildProductStatusDestinationStatus());
4567 return o; 4567 return o;
4568 } 4568 }
4569 4569
4570 checkUnnamed594(core.List<api.ProductStatusDestinationStatus> o) { 4570 checkUnnamed333(core.List<api.ProductStatusDestinationStatus> o) {
4571 unittest.expect(o, unittest.hasLength(2)); 4571 unittest.expect(o, unittest.hasLength(2));
4572 checkProductStatusDestinationStatus(o[0]); 4572 checkProductStatusDestinationStatus(o[0]);
4573 checkProductStatusDestinationStatus(o[1]); 4573 checkProductStatusDestinationStatus(o[1]);
4574 } 4574 }
4575 4575
4576 core.int buildCounterProductStatus = 0; 4576 core.int buildCounterProductStatus = 0;
4577 buildProductStatus() { 4577 buildProductStatus() {
4578 var o = new api.ProductStatus(); 4578 var o = new api.ProductStatus();
4579 buildCounterProductStatus++; 4579 buildCounterProductStatus++;
4580 if (buildCounterProductStatus < 3) { 4580 if (buildCounterProductStatus < 3) {
4581 o.creationDate = "foo"; 4581 o.creationDate = "foo";
4582 o.dataQualityIssues = buildUnnamed593(); 4582 o.dataQualityIssues = buildUnnamed332();
4583 o.destinationStatuses = buildUnnamed594(); 4583 o.destinationStatuses = buildUnnamed333();
4584 o.googleExpirationDate = "foo"; 4584 o.googleExpirationDate = "foo";
4585 o.kind = "foo"; 4585 o.kind = "foo";
4586 o.lastUpdateDate = "foo"; 4586 o.lastUpdateDate = "foo";
4587 o.link = "foo"; 4587 o.link = "foo";
4588 o.productId = "foo"; 4588 o.productId = "foo";
4589 o.title = "foo"; 4589 o.title = "foo";
4590 } 4590 }
4591 buildCounterProductStatus--; 4591 buildCounterProductStatus--;
4592 return o; 4592 return o;
4593 } 4593 }
4594 4594
4595 checkProductStatus(api.ProductStatus o) { 4595 checkProductStatus(api.ProductStatus o) {
4596 buildCounterProductStatus++; 4596 buildCounterProductStatus++;
4597 if (buildCounterProductStatus < 3) { 4597 if (buildCounterProductStatus < 3) {
4598 unittest.expect(o.creationDate, unittest.equals('foo')); 4598 unittest.expect(o.creationDate, unittest.equals('foo'));
4599 checkUnnamed593(o.dataQualityIssues); 4599 checkUnnamed332(o.dataQualityIssues);
4600 checkUnnamed594(o.destinationStatuses); 4600 checkUnnamed333(o.destinationStatuses);
4601 unittest.expect(o.googleExpirationDate, unittest.equals('foo')); 4601 unittest.expect(o.googleExpirationDate, unittest.equals('foo'));
4602 unittest.expect(o.kind, unittest.equals('foo')); 4602 unittest.expect(o.kind, unittest.equals('foo'));
4603 unittest.expect(o.lastUpdateDate, unittest.equals('foo')); 4603 unittest.expect(o.lastUpdateDate, unittest.equals('foo'));
4604 unittest.expect(o.link, unittest.equals('foo')); 4604 unittest.expect(o.link, unittest.equals('foo'));
4605 unittest.expect(o.productId, unittest.equals('foo')); 4605 unittest.expect(o.productId, unittest.equals('foo'));
4606 unittest.expect(o.title, unittest.equals('foo')); 4606 unittest.expect(o.title, unittest.equals('foo'));
4607 } 4607 }
4608 buildCounterProductStatus--; 4608 buildCounterProductStatus--;
4609 } 4609 }
4610 4610
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
4728 4728
4729 checkProductUnitPricingMeasure(api.ProductUnitPricingMeasure o) { 4729 checkProductUnitPricingMeasure(api.ProductUnitPricingMeasure o) {
4730 buildCounterProductUnitPricingMeasure++; 4730 buildCounterProductUnitPricingMeasure++;
4731 if (buildCounterProductUnitPricingMeasure < 3) { 4731 if (buildCounterProductUnitPricingMeasure < 3) {
4732 unittest.expect(o.unit, unittest.equals('foo')); 4732 unittest.expect(o.unit, unittest.equals('foo'));
4733 unittest.expect(o.value, unittest.equals(42.0)); 4733 unittest.expect(o.value, unittest.equals(42.0));
4734 } 4734 }
4735 buildCounterProductUnitPricingMeasure--; 4735 buildCounterProductUnitPricingMeasure--;
4736 } 4736 }
4737 4737
4738 buildUnnamed595() { 4738 buildUnnamed334() {
4739 var o = new core.List<api.ProductsCustomBatchRequestEntry>(); 4739 var o = new core.List<api.ProductsCustomBatchRequestEntry>();
4740 o.add(buildProductsCustomBatchRequestEntry()); 4740 o.add(buildProductsCustomBatchRequestEntry());
4741 o.add(buildProductsCustomBatchRequestEntry()); 4741 o.add(buildProductsCustomBatchRequestEntry());
4742 return o; 4742 return o;
4743 } 4743 }
4744 4744
4745 checkUnnamed595(core.List<api.ProductsCustomBatchRequestEntry> o) { 4745 checkUnnamed334(core.List<api.ProductsCustomBatchRequestEntry> o) {
4746 unittest.expect(o, unittest.hasLength(2)); 4746 unittest.expect(o, unittest.hasLength(2));
4747 checkProductsCustomBatchRequestEntry(o[0]); 4747 checkProductsCustomBatchRequestEntry(o[0]);
4748 checkProductsCustomBatchRequestEntry(o[1]); 4748 checkProductsCustomBatchRequestEntry(o[1]);
4749 } 4749 }
4750 4750
4751 core.int buildCounterProductsCustomBatchRequest = 0; 4751 core.int buildCounterProductsCustomBatchRequest = 0;
4752 buildProductsCustomBatchRequest() { 4752 buildProductsCustomBatchRequest() {
4753 var o = new api.ProductsCustomBatchRequest(); 4753 var o = new api.ProductsCustomBatchRequest();
4754 buildCounterProductsCustomBatchRequest++; 4754 buildCounterProductsCustomBatchRequest++;
4755 if (buildCounterProductsCustomBatchRequest < 3) { 4755 if (buildCounterProductsCustomBatchRequest < 3) {
4756 o.entries = buildUnnamed595(); 4756 o.entries = buildUnnamed334();
4757 } 4757 }
4758 buildCounterProductsCustomBatchRequest--; 4758 buildCounterProductsCustomBatchRequest--;
4759 return o; 4759 return o;
4760 } 4760 }
4761 4761
4762 checkProductsCustomBatchRequest(api.ProductsCustomBatchRequest o) { 4762 checkProductsCustomBatchRequest(api.ProductsCustomBatchRequest o) {
4763 buildCounterProductsCustomBatchRequest++; 4763 buildCounterProductsCustomBatchRequest++;
4764 if (buildCounterProductsCustomBatchRequest < 3) { 4764 if (buildCounterProductsCustomBatchRequest < 3) {
4765 checkUnnamed595(o.entries); 4765 checkUnnamed334(o.entries);
4766 } 4766 }
4767 buildCounterProductsCustomBatchRequest--; 4767 buildCounterProductsCustomBatchRequest--;
4768 } 4768 }
4769 4769
4770 core.int buildCounterProductsCustomBatchRequestEntry = 0; 4770 core.int buildCounterProductsCustomBatchRequestEntry = 0;
4771 buildProductsCustomBatchRequestEntry() { 4771 buildProductsCustomBatchRequestEntry() {
4772 var o = new api.ProductsCustomBatchRequestEntry(); 4772 var o = new api.ProductsCustomBatchRequestEntry();
4773 buildCounterProductsCustomBatchRequestEntry++; 4773 buildCounterProductsCustomBatchRequestEntry++;
4774 if (buildCounterProductsCustomBatchRequestEntry < 3) { 4774 if (buildCounterProductsCustomBatchRequestEntry < 3) {
4775 o.batchId = 42; 4775 o.batchId = 42;
(...skipping 11 matching lines...) Expand all
4787 if (buildCounterProductsCustomBatchRequestEntry < 3) { 4787 if (buildCounterProductsCustomBatchRequestEntry < 3) {
4788 unittest.expect(o.batchId, unittest.equals(42)); 4788 unittest.expect(o.batchId, unittest.equals(42));
4789 unittest.expect(o.merchantId, unittest.equals('foo')); 4789 unittest.expect(o.merchantId, unittest.equals('foo'));
4790 unittest.expect(o.method, unittest.equals('foo')); 4790 unittest.expect(o.method, unittest.equals('foo'));
4791 checkProduct(o.product); 4791 checkProduct(o.product);
4792 unittest.expect(o.productId, unittest.equals('foo')); 4792 unittest.expect(o.productId, unittest.equals('foo'));
4793 } 4793 }
4794 buildCounterProductsCustomBatchRequestEntry--; 4794 buildCounterProductsCustomBatchRequestEntry--;
4795 } 4795 }
4796 4796
4797 buildUnnamed596() { 4797 buildUnnamed335() {
4798 var o = new core.List<api.ProductsCustomBatchResponseEntry>(); 4798 var o = new core.List<api.ProductsCustomBatchResponseEntry>();
4799 o.add(buildProductsCustomBatchResponseEntry()); 4799 o.add(buildProductsCustomBatchResponseEntry());
4800 o.add(buildProductsCustomBatchResponseEntry()); 4800 o.add(buildProductsCustomBatchResponseEntry());
4801 return o; 4801 return o;
4802 } 4802 }
4803 4803
4804 checkUnnamed596(core.List<api.ProductsCustomBatchResponseEntry> o) { 4804 checkUnnamed335(core.List<api.ProductsCustomBatchResponseEntry> o) {
4805 unittest.expect(o, unittest.hasLength(2)); 4805 unittest.expect(o, unittest.hasLength(2));
4806 checkProductsCustomBatchResponseEntry(o[0]); 4806 checkProductsCustomBatchResponseEntry(o[0]);
4807 checkProductsCustomBatchResponseEntry(o[1]); 4807 checkProductsCustomBatchResponseEntry(o[1]);
4808 } 4808 }
4809 4809
4810 core.int buildCounterProductsCustomBatchResponse = 0; 4810 core.int buildCounterProductsCustomBatchResponse = 0;
4811 buildProductsCustomBatchResponse() { 4811 buildProductsCustomBatchResponse() {
4812 var o = new api.ProductsCustomBatchResponse(); 4812 var o = new api.ProductsCustomBatchResponse();
4813 buildCounterProductsCustomBatchResponse++; 4813 buildCounterProductsCustomBatchResponse++;
4814 if (buildCounterProductsCustomBatchResponse < 3) { 4814 if (buildCounterProductsCustomBatchResponse < 3) {
4815 o.entries = buildUnnamed596(); 4815 o.entries = buildUnnamed335();
4816 o.kind = "foo"; 4816 o.kind = "foo";
4817 } 4817 }
4818 buildCounterProductsCustomBatchResponse--; 4818 buildCounterProductsCustomBatchResponse--;
4819 return o; 4819 return o;
4820 } 4820 }
4821 4821
4822 checkProductsCustomBatchResponse(api.ProductsCustomBatchResponse o) { 4822 checkProductsCustomBatchResponse(api.ProductsCustomBatchResponse o) {
4823 buildCounterProductsCustomBatchResponse++; 4823 buildCounterProductsCustomBatchResponse++;
4824 if (buildCounterProductsCustomBatchResponse < 3) { 4824 if (buildCounterProductsCustomBatchResponse < 3) {
4825 checkUnnamed596(o.entries); 4825 checkUnnamed335(o.entries);
4826 unittest.expect(o.kind, unittest.equals('foo')); 4826 unittest.expect(o.kind, unittest.equals('foo'));
4827 } 4827 }
4828 buildCounterProductsCustomBatchResponse--; 4828 buildCounterProductsCustomBatchResponse--;
4829 } 4829 }
4830 4830
4831 core.int buildCounterProductsCustomBatchResponseEntry = 0; 4831 core.int buildCounterProductsCustomBatchResponseEntry = 0;
4832 buildProductsCustomBatchResponseEntry() { 4832 buildProductsCustomBatchResponseEntry() {
4833 var o = new api.ProductsCustomBatchResponseEntry(); 4833 var o = new api.ProductsCustomBatchResponseEntry();
4834 buildCounterProductsCustomBatchResponseEntry++; 4834 buildCounterProductsCustomBatchResponseEntry++;
4835 if (buildCounterProductsCustomBatchResponseEntry < 3) { 4835 if (buildCounterProductsCustomBatchResponseEntry < 3) {
(...skipping 10 matching lines...) Expand all
4846 buildCounterProductsCustomBatchResponseEntry++; 4846 buildCounterProductsCustomBatchResponseEntry++;
4847 if (buildCounterProductsCustomBatchResponseEntry < 3) { 4847 if (buildCounterProductsCustomBatchResponseEntry < 3) {
4848 unittest.expect(o.batchId, unittest.equals(42)); 4848 unittest.expect(o.batchId, unittest.equals(42));
4849 checkErrors(o.errors); 4849 checkErrors(o.errors);
4850 unittest.expect(o.kind, unittest.equals('foo')); 4850 unittest.expect(o.kind, unittest.equals('foo'));
4851 checkProduct(o.product); 4851 checkProduct(o.product);
4852 } 4852 }
4853 buildCounterProductsCustomBatchResponseEntry--; 4853 buildCounterProductsCustomBatchResponseEntry--;
4854 } 4854 }
4855 4855
4856 buildUnnamed597() { 4856 buildUnnamed336() {
4857 var o = new core.List<api.Product>(); 4857 var o = new core.List<api.Product>();
4858 o.add(buildProduct()); 4858 o.add(buildProduct());
4859 o.add(buildProduct()); 4859 o.add(buildProduct());
4860 return o; 4860 return o;
4861 } 4861 }
4862 4862
4863 checkUnnamed597(core.List<api.Product> o) { 4863 checkUnnamed336(core.List<api.Product> o) {
4864 unittest.expect(o, unittest.hasLength(2)); 4864 unittest.expect(o, unittest.hasLength(2));
4865 checkProduct(o[0]); 4865 checkProduct(o[0]);
4866 checkProduct(o[1]); 4866 checkProduct(o[1]);
4867 } 4867 }
4868 4868
4869 core.int buildCounterProductsListResponse = 0; 4869 core.int buildCounterProductsListResponse = 0;
4870 buildProductsListResponse() { 4870 buildProductsListResponse() {
4871 var o = new api.ProductsListResponse(); 4871 var o = new api.ProductsListResponse();
4872 buildCounterProductsListResponse++; 4872 buildCounterProductsListResponse++;
4873 if (buildCounterProductsListResponse < 3) { 4873 if (buildCounterProductsListResponse < 3) {
4874 o.kind = "foo"; 4874 o.kind = "foo";
4875 o.nextPageToken = "foo"; 4875 o.nextPageToken = "foo";
4876 o.resources = buildUnnamed597(); 4876 o.resources = buildUnnamed336();
4877 } 4877 }
4878 buildCounterProductsListResponse--; 4878 buildCounterProductsListResponse--;
4879 return o; 4879 return o;
4880 } 4880 }
4881 4881
4882 checkProductsListResponse(api.ProductsListResponse o) { 4882 checkProductsListResponse(api.ProductsListResponse o) {
4883 buildCounterProductsListResponse++; 4883 buildCounterProductsListResponse++;
4884 if (buildCounterProductsListResponse < 3) { 4884 if (buildCounterProductsListResponse < 3) {
4885 unittest.expect(o.kind, unittest.equals('foo')); 4885 unittest.expect(o.kind, unittest.equals('foo'));
4886 unittest.expect(o.nextPageToken, unittest.equals('foo')); 4886 unittest.expect(o.nextPageToken, unittest.equals('foo'));
4887 checkUnnamed597(o.resources); 4887 checkUnnamed336(o.resources);
4888 } 4888 }
4889 buildCounterProductsListResponse--; 4889 buildCounterProductsListResponse--;
4890 } 4890 }
4891 4891
4892 buildUnnamed598() { 4892 buildUnnamed337() {
4893 var o = new core.List<api.ProductstatusesCustomBatchRequestEntry>(); 4893 var o = new core.List<api.ProductstatusesCustomBatchRequestEntry>();
4894 o.add(buildProductstatusesCustomBatchRequestEntry()); 4894 o.add(buildProductstatusesCustomBatchRequestEntry());
4895 o.add(buildProductstatusesCustomBatchRequestEntry()); 4895 o.add(buildProductstatusesCustomBatchRequestEntry());
4896 return o; 4896 return o;
4897 } 4897 }
4898 4898
4899 checkUnnamed598(core.List<api.ProductstatusesCustomBatchRequestEntry> o) { 4899 checkUnnamed337(core.List<api.ProductstatusesCustomBatchRequestEntry> o) {
4900 unittest.expect(o, unittest.hasLength(2)); 4900 unittest.expect(o, unittest.hasLength(2));
4901 checkProductstatusesCustomBatchRequestEntry(o[0]); 4901 checkProductstatusesCustomBatchRequestEntry(o[0]);
4902 checkProductstatusesCustomBatchRequestEntry(o[1]); 4902 checkProductstatusesCustomBatchRequestEntry(o[1]);
4903 } 4903 }
4904 4904
4905 core.int buildCounterProductstatusesCustomBatchRequest = 0; 4905 core.int buildCounterProductstatusesCustomBatchRequest = 0;
4906 buildProductstatusesCustomBatchRequest() { 4906 buildProductstatusesCustomBatchRequest() {
4907 var o = new api.ProductstatusesCustomBatchRequest(); 4907 var o = new api.ProductstatusesCustomBatchRequest();
4908 buildCounterProductstatusesCustomBatchRequest++; 4908 buildCounterProductstatusesCustomBatchRequest++;
4909 if (buildCounterProductstatusesCustomBatchRequest < 3) { 4909 if (buildCounterProductstatusesCustomBatchRequest < 3) {
4910 o.entries = buildUnnamed598(); 4910 o.entries = buildUnnamed337();
4911 } 4911 }
4912 buildCounterProductstatusesCustomBatchRequest--; 4912 buildCounterProductstatusesCustomBatchRequest--;
4913 return o; 4913 return o;
4914 } 4914 }
4915 4915
4916 checkProductstatusesCustomBatchRequest(api.ProductstatusesCustomBatchRequest o) { 4916 checkProductstatusesCustomBatchRequest(api.ProductstatusesCustomBatchRequest o) {
4917 buildCounterProductstatusesCustomBatchRequest++; 4917 buildCounterProductstatusesCustomBatchRequest++;
4918 if (buildCounterProductstatusesCustomBatchRequest < 3) { 4918 if (buildCounterProductstatusesCustomBatchRequest < 3) {
4919 checkUnnamed598(o.entries); 4919 checkUnnamed337(o.entries);
4920 } 4920 }
4921 buildCounterProductstatusesCustomBatchRequest--; 4921 buildCounterProductstatusesCustomBatchRequest--;
4922 } 4922 }
4923 4923
4924 core.int buildCounterProductstatusesCustomBatchRequestEntry = 0; 4924 core.int buildCounterProductstatusesCustomBatchRequestEntry = 0;
4925 buildProductstatusesCustomBatchRequestEntry() { 4925 buildProductstatusesCustomBatchRequestEntry() {
4926 var o = new api.ProductstatusesCustomBatchRequestEntry(); 4926 var o = new api.ProductstatusesCustomBatchRequestEntry();
4927 buildCounterProductstatusesCustomBatchRequestEntry++; 4927 buildCounterProductstatusesCustomBatchRequestEntry++;
4928 if (buildCounterProductstatusesCustomBatchRequestEntry < 3) { 4928 if (buildCounterProductstatusesCustomBatchRequestEntry < 3) {
4929 o.batchId = 42; 4929 o.batchId = 42;
4930 o.merchantId = "foo"; 4930 o.merchantId = "foo";
4931 o.method = "foo"; 4931 o.method = "foo";
4932 o.productId = "foo"; 4932 o.productId = "foo";
4933 } 4933 }
4934 buildCounterProductstatusesCustomBatchRequestEntry--; 4934 buildCounterProductstatusesCustomBatchRequestEntry--;
4935 return o; 4935 return o;
4936 } 4936 }
4937 4937
4938 checkProductstatusesCustomBatchRequestEntry(api.ProductstatusesCustomBatchReques tEntry o) { 4938 checkProductstatusesCustomBatchRequestEntry(api.ProductstatusesCustomBatchReques tEntry o) {
4939 buildCounterProductstatusesCustomBatchRequestEntry++; 4939 buildCounterProductstatusesCustomBatchRequestEntry++;
4940 if (buildCounterProductstatusesCustomBatchRequestEntry < 3) { 4940 if (buildCounterProductstatusesCustomBatchRequestEntry < 3) {
4941 unittest.expect(o.batchId, unittest.equals(42)); 4941 unittest.expect(o.batchId, unittest.equals(42));
4942 unittest.expect(o.merchantId, unittest.equals('foo')); 4942 unittest.expect(o.merchantId, unittest.equals('foo'));
4943 unittest.expect(o.method, unittest.equals('foo')); 4943 unittest.expect(o.method, unittest.equals('foo'));
4944 unittest.expect(o.productId, unittest.equals('foo')); 4944 unittest.expect(o.productId, unittest.equals('foo'));
4945 } 4945 }
4946 buildCounterProductstatusesCustomBatchRequestEntry--; 4946 buildCounterProductstatusesCustomBatchRequestEntry--;
4947 } 4947 }
4948 4948
4949 buildUnnamed599() { 4949 buildUnnamed338() {
4950 var o = new core.List<api.ProductstatusesCustomBatchResponseEntry>(); 4950 var o = new core.List<api.ProductstatusesCustomBatchResponseEntry>();
4951 o.add(buildProductstatusesCustomBatchResponseEntry()); 4951 o.add(buildProductstatusesCustomBatchResponseEntry());
4952 o.add(buildProductstatusesCustomBatchResponseEntry()); 4952 o.add(buildProductstatusesCustomBatchResponseEntry());
4953 return o; 4953 return o;
4954 } 4954 }
4955 4955
4956 checkUnnamed599(core.List<api.ProductstatusesCustomBatchResponseEntry> o) { 4956 checkUnnamed338(core.List<api.ProductstatusesCustomBatchResponseEntry> o) {
4957 unittest.expect(o, unittest.hasLength(2)); 4957 unittest.expect(o, unittest.hasLength(2));
4958 checkProductstatusesCustomBatchResponseEntry(o[0]); 4958 checkProductstatusesCustomBatchResponseEntry(o[0]);
4959 checkProductstatusesCustomBatchResponseEntry(o[1]); 4959 checkProductstatusesCustomBatchResponseEntry(o[1]);
4960 } 4960 }
4961 4961
4962 core.int buildCounterProductstatusesCustomBatchResponse = 0; 4962 core.int buildCounterProductstatusesCustomBatchResponse = 0;
4963 buildProductstatusesCustomBatchResponse() { 4963 buildProductstatusesCustomBatchResponse() {
4964 var o = new api.ProductstatusesCustomBatchResponse(); 4964 var o = new api.ProductstatusesCustomBatchResponse();
4965 buildCounterProductstatusesCustomBatchResponse++; 4965 buildCounterProductstatusesCustomBatchResponse++;
4966 if (buildCounterProductstatusesCustomBatchResponse < 3) { 4966 if (buildCounterProductstatusesCustomBatchResponse < 3) {
4967 o.entries = buildUnnamed599(); 4967 o.entries = buildUnnamed338();
4968 o.kind = "foo"; 4968 o.kind = "foo";
4969 } 4969 }
4970 buildCounterProductstatusesCustomBatchResponse--; 4970 buildCounterProductstatusesCustomBatchResponse--;
4971 return o; 4971 return o;
4972 } 4972 }
4973 4973
4974 checkProductstatusesCustomBatchResponse(api.ProductstatusesCustomBatchResponse o ) { 4974 checkProductstatusesCustomBatchResponse(api.ProductstatusesCustomBatchResponse o ) {
4975 buildCounterProductstatusesCustomBatchResponse++; 4975 buildCounterProductstatusesCustomBatchResponse++;
4976 if (buildCounterProductstatusesCustomBatchResponse < 3) { 4976 if (buildCounterProductstatusesCustomBatchResponse < 3) {
4977 checkUnnamed599(o.entries); 4977 checkUnnamed338(o.entries);
4978 unittest.expect(o.kind, unittest.equals('foo')); 4978 unittest.expect(o.kind, unittest.equals('foo'));
4979 } 4979 }
4980 buildCounterProductstatusesCustomBatchResponse--; 4980 buildCounterProductstatusesCustomBatchResponse--;
4981 } 4981 }
4982 4982
4983 core.int buildCounterProductstatusesCustomBatchResponseEntry = 0; 4983 core.int buildCounterProductstatusesCustomBatchResponseEntry = 0;
4984 buildProductstatusesCustomBatchResponseEntry() { 4984 buildProductstatusesCustomBatchResponseEntry() {
4985 var o = new api.ProductstatusesCustomBatchResponseEntry(); 4985 var o = new api.ProductstatusesCustomBatchResponseEntry();
4986 buildCounterProductstatusesCustomBatchResponseEntry++; 4986 buildCounterProductstatusesCustomBatchResponseEntry++;
4987 if (buildCounterProductstatusesCustomBatchResponseEntry < 3) { 4987 if (buildCounterProductstatusesCustomBatchResponseEntry < 3) {
(...skipping 10 matching lines...) Expand all
4998 buildCounterProductstatusesCustomBatchResponseEntry++; 4998 buildCounterProductstatusesCustomBatchResponseEntry++;
4999 if (buildCounterProductstatusesCustomBatchResponseEntry < 3) { 4999 if (buildCounterProductstatusesCustomBatchResponseEntry < 3) {
5000 unittest.expect(o.batchId, unittest.equals(42)); 5000 unittest.expect(o.batchId, unittest.equals(42));
5001 checkErrors(o.errors); 5001 checkErrors(o.errors);
5002 unittest.expect(o.kind, unittest.equals('foo')); 5002 unittest.expect(o.kind, unittest.equals('foo'));
5003 checkProductStatus(o.productStatus); 5003 checkProductStatus(o.productStatus);
5004 } 5004 }
5005 buildCounterProductstatusesCustomBatchResponseEntry--; 5005 buildCounterProductstatusesCustomBatchResponseEntry--;
5006 } 5006 }
5007 5007
5008 buildUnnamed600() { 5008 buildUnnamed339() {
5009 var o = new core.List<api.ProductStatus>(); 5009 var o = new core.List<api.ProductStatus>();
5010 o.add(buildProductStatus()); 5010 o.add(buildProductStatus());
5011 o.add(buildProductStatus()); 5011 o.add(buildProductStatus());
5012 return o; 5012 return o;
5013 } 5013 }
5014 5014
5015 checkUnnamed600(core.List<api.ProductStatus> o) { 5015 checkUnnamed339(core.List<api.ProductStatus> o) {
5016 unittest.expect(o, unittest.hasLength(2)); 5016 unittest.expect(o, unittest.hasLength(2));
5017 checkProductStatus(o[0]); 5017 checkProductStatus(o[0]);
5018 checkProductStatus(o[1]); 5018 checkProductStatus(o[1]);
5019 } 5019 }
5020 5020
5021 core.int buildCounterProductstatusesListResponse = 0; 5021 core.int buildCounterProductstatusesListResponse = 0;
5022 buildProductstatusesListResponse() { 5022 buildProductstatusesListResponse() {
5023 var o = new api.ProductstatusesListResponse(); 5023 var o = new api.ProductstatusesListResponse();
5024 buildCounterProductstatusesListResponse++; 5024 buildCounterProductstatusesListResponse++;
5025 if (buildCounterProductstatusesListResponse < 3) { 5025 if (buildCounterProductstatusesListResponse < 3) {
5026 o.kind = "foo"; 5026 o.kind = "foo";
5027 o.nextPageToken = "foo"; 5027 o.nextPageToken = "foo";
5028 o.resources = buildUnnamed600(); 5028 o.resources = buildUnnamed339();
5029 } 5029 }
5030 buildCounterProductstatusesListResponse--; 5030 buildCounterProductstatusesListResponse--;
5031 return o; 5031 return o;
5032 } 5032 }
5033 5033
5034 checkProductstatusesListResponse(api.ProductstatusesListResponse o) { 5034 checkProductstatusesListResponse(api.ProductstatusesListResponse o) {
5035 buildCounterProductstatusesListResponse++; 5035 buildCounterProductstatusesListResponse++;
5036 if (buildCounterProductstatusesListResponse < 3) { 5036 if (buildCounterProductstatusesListResponse < 3) {
5037 unittest.expect(o.kind, unittest.equals('foo')); 5037 unittest.expect(o.kind, unittest.equals('foo'));
5038 unittest.expect(o.nextPageToken, unittest.equals('foo')); 5038 unittest.expect(o.nextPageToken, unittest.equals('foo'));
5039 checkUnnamed600(o.resources); 5039 checkUnnamed339(o.resources);
5040 } 5040 }
5041 buildCounterProductstatusesListResponse--; 5041 buildCounterProductstatusesListResponse--;
5042 } 5042 }
5043 5043
5044 buildUnnamed601() { 5044 buildUnnamed340() {
5045 var o = new core.List<core.String>(); 5045 var o = new core.List<core.String>();
5046 o.add("foo"); 5046 o.add("foo");
5047 o.add("foo"); 5047 o.add("foo");
5048 return o; 5048 return o;
5049 } 5049 }
5050 5050
5051 checkUnnamed601(core.List<core.String> o) { 5051 checkUnnamed340(core.List<core.String> o) {
5052 unittest.expect(o, unittest.hasLength(2)); 5052 unittest.expect(o, unittest.hasLength(2));
5053 unittest.expect(o[0], unittest.equals('foo')); 5053 unittest.expect(o[0], unittest.equals('foo'));
5054 unittest.expect(o[1], unittest.equals('foo')); 5054 unittest.expect(o[1], unittest.equals('foo'));
5055 } 5055 }
5056 5056
5057 buildUnnamed602() { 5057 buildUnnamed341() {
5058 var o = new core.List<api.CarrierRate>(); 5058 var o = new core.List<api.CarrierRate>();
5059 o.add(buildCarrierRate()); 5059 o.add(buildCarrierRate());
5060 o.add(buildCarrierRate()); 5060 o.add(buildCarrierRate());
5061 return o; 5061 return o;
5062 } 5062 }
5063 5063
5064 checkUnnamed602(core.List<api.CarrierRate> o) { 5064 checkUnnamed341(core.List<api.CarrierRate> o) {
5065 unittest.expect(o, unittest.hasLength(2)); 5065 unittest.expect(o, unittest.hasLength(2));
5066 checkCarrierRate(o[0]); 5066 checkCarrierRate(o[0]);
5067 checkCarrierRate(o[1]); 5067 checkCarrierRate(o[1]);
5068 } 5068 }
5069 5069
5070 buildUnnamed603() { 5070 buildUnnamed342() {
5071 var o = new core.List<api.Table>(); 5071 var o = new core.List<api.Table>();
5072 o.add(buildTable()); 5072 o.add(buildTable());
5073 o.add(buildTable()); 5073 o.add(buildTable());
5074 return o; 5074 return o;
5075 } 5075 }
5076 5076
5077 checkUnnamed603(core.List<api.Table> o) { 5077 checkUnnamed342(core.List<api.Table> o) {
5078 unittest.expect(o, unittest.hasLength(2)); 5078 unittest.expect(o, unittest.hasLength(2));
5079 checkTable(o[0]); 5079 checkTable(o[0]);
5080 checkTable(o[1]); 5080 checkTable(o[1]);
5081 } 5081 }
5082 5082
5083 core.int buildCounterRateGroup = 0; 5083 core.int buildCounterRateGroup = 0;
5084 buildRateGroup() { 5084 buildRateGroup() {
5085 var o = new api.RateGroup(); 5085 var o = new api.RateGroup();
5086 buildCounterRateGroup++; 5086 buildCounterRateGroup++;
5087 if (buildCounterRateGroup < 3) { 5087 if (buildCounterRateGroup < 3) {
5088 o.applicableShippingLabels = buildUnnamed601(); 5088 o.applicableShippingLabels = buildUnnamed340();
5089 o.carrierRates = buildUnnamed602(); 5089 o.carrierRates = buildUnnamed341();
5090 o.mainTable = buildTable(); 5090 o.mainTable = buildTable();
5091 o.singleValue = buildValue(); 5091 o.singleValue = buildValue();
5092 o.subtables = buildUnnamed603(); 5092 o.subtables = buildUnnamed342();
5093 } 5093 }
5094 buildCounterRateGroup--; 5094 buildCounterRateGroup--;
5095 return o; 5095 return o;
5096 } 5096 }
5097 5097
5098 checkRateGroup(api.RateGroup o) { 5098 checkRateGroup(api.RateGroup o) {
5099 buildCounterRateGroup++; 5099 buildCounterRateGroup++;
5100 if (buildCounterRateGroup < 3) { 5100 if (buildCounterRateGroup < 3) {
5101 checkUnnamed601(o.applicableShippingLabels); 5101 checkUnnamed340(o.applicableShippingLabels);
5102 checkUnnamed602(o.carrierRates); 5102 checkUnnamed341(o.carrierRates);
5103 checkTable(o.mainTable); 5103 checkTable(o.mainTable);
5104 checkValue(o.singleValue); 5104 checkValue(o.singleValue);
5105 checkUnnamed603(o.subtables); 5105 checkUnnamed342(o.subtables);
5106 } 5106 }
5107 buildCounterRateGroup--; 5107 buildCounterRateGroup--;
5108 } 5108 }
5109 5109
5110 buildUnnamed604() { 5110 buildUnnamed343() {
5111 var o = new core.List<api.Value>(); 5111 var o = new core.List<api.Value>();
5112 o.add(buildValue()); 5112 o.add(buildValue());
5113 o.add(buildValue()); 5113 o.add(buildValue());
5114 return o; 5114 return o;
5115 } 5115 }
5116 5116
5117 checkUnnamed604(core.List<api.Value> o) { 5117 checkUnnamed343(core.List<api.Value> o) {
5118 unittest.expect(o, unittest.hasLength(2)); 5118 unittest.expect(o, unittest.hasLength(2));
5119 checkValue(o[0]); 5119 checkValue(o[0]);
5120 checkValue(o[1]); 5120 checkValue(o[1]);
5121 } 5121 }
5122 5122
5123 core.int buildCounterRow = 0; 5123 core.int buildCounterRow = 0;
5124 buildRow() { 5124 buildRow() {
5125 var o = new api.Row(); 5125 var o = new api.Row();
5126 buildCounterRow++; 5126 buildCounterRow++;
5127 if (buildCounterRow < 3) { 5127 if (buildCounterRow < 3) {
5128 o.cells = buildUnnamed604(); 5128 o.cells = buildUnnamed343();
5129 } 5129 }
5130 buildCounterRow--; 5130 buildCounterRow--;
5131 return o; 5131 return o;
5132 } 5132 }
5133 5133
5134 checkRow(api.Row o) { 5134 checkRow(api.Row o) {
5135 buildCounterRow++; 5135 buildCounterRow++;
5136 if (buildCounterRow < 3) { 5136 if (buildCounterRow < 3) {
5137 checkUnnamed604(o.cells); 5137 checkUnnamed343(o.cells);
5138 } 5138 }
5139 buildCounterRow--; 5139 buildCounterRow--;
5140 } 5140 }
5141 5141
5142 buildUnnamed605() { 5142 buildUnnamed344() {
5143 var o = new core.List<api.RateGroup>(); 5143 var o = new core.List<api.RateGroup>();
5144 o.add(buildRateGroup()); 5144 o.add(buildRateGroup());
5145 o.add(buildRateGroup()); 5145 o.add(buildRateGroup());
5146 return o; 5146 return o;
5147 } 5147 }
5148 5148
5149 checkUnnamed605(core.List<api.RateGroup> o) { 5149 checkUnnamed344(core.List<api.RateGroup> o) {
5150 unittest.expect(o, unittest.hasLength(2)); 5150 unittest.expect(o, unittest.hasLength(2));
5151 checkRateGroup(o[0]); 5151 checkRateGroup(o[0]);
5152 checkRateGroup(o[1]); 5152 checkRateGroup(o[1]);
5153 } 5153 }
5154 5154
5155 core.int buildCounterService = 0; 5155 core.int buildCounterService = 0;
5156 buildService() { 5156 buildService() {
5157 var o = new api.Service(); 5157 var o = new api.Service();
5158 buildCounterService++; 5158 buildCounterService++;
5159 if (buildCounterService < 3) { 5159 if (buildCounterService < 3) {
5160 o.active = true; 5160 o.active = true;
5161 o.currency = "foo"; 5161 o.currency = "foo";
5162 o.deliveryCountry = "foo"; 5162 o.deliveryCountry = "foo";
5163 o.deliveryTime = buildDeliveryTime(); 5163 o.deliveryTime = buildDeliveryTime();
5164 o.name = "foo"; 5164 o.name = "foo";
5165 o.rateGroups = buildUnnamed605(); 5165 o.rateGroups = buildUnnamed344();
5166 } 5166 }
5167 buildCounterService--; 5167 buildCounterService--;
5168 return o; 5168 return o;
5169 } 5169 }
5170 5170
5171 checkService(api.Service o) { 5171 checkService(api.Service o) {
5172 buildCounterService++; 5172 buildCounterService++;
5173 if (buildCounterService < 3) { 5173 if (buildCounterService < 3) {
5174 unittest.expect(o.active, unittest.isTrue); 5174 unittest.expect(o.active, unittest.isTrue);
5175 unittest.expect(o.currency, unittest.equals('foo')); 5175 unittest.expect(o.currency, unittest.equals('foo'));
5176 unittest.expect(o.deliveryCountry, unittest.equals('foo')); 5176 unittest.expect(o.deliveryCountry, unittest.equals('foo'));
5177 checkDeliveryTime(o.deliveryTime); 5177 checkDeliveryTime(o.deliveryTime);
5178 unittest.expect(o.name, unittest.equals('foo')); 5178 unittest.expect(o.name, unittest.equals('foo'));
5179 checkUnnamed605(o.rateGroups); 5179 checkUnnamed344(o.rateGroups);
5180 } 5180 }
5181 buildCounterService--; 5181 buildCounterService--;
5182 } 5182 }
5183 5183
5184 buildUnnamed606() { 5184 buildUnnamed345() {
5185 var o = new core.List<api.PostalCodeGroup>(); 5185 var o = new core.List<api.PostalCodeGroup>();
5186 o.add(buildPostalCodeGroup()); 5186 o.add(buildPostalCodeGroup());
5187 o.add(buildPostalCodeGroup()); 5187 o.add(buildPostalCodeGroup());
5188 return o; 5188 return o;
5189 } 5189 }
5190 5190
5191 checkUnnamed606(core.List<api.PostalCodeGroup> o) { 5191 checkUnnamed345(core.List<api.PostalCodeGroup> o) {
5192 unittest.expect(o, unittest.hasLength(2)); 5192 unittest.expect(o, unittest.hasLength(2));
5193 checkPostalCodeGroup(o[0]); 5193 checkPostalCodeGroup(o[0]);
5194 checkPostalCodeGroup(o[1]); 5194 checkPostalCodeGroup(o[1]);
5195 } 5195 }
5196 5196
5197 buildUnnamed607() { 5197 buildUnnamed346() {
5198 var o = new core.List<api.Service>(); 5198 var o = new core.List<api.Service>();
5199 o.add(buildService()); 5199 o.add(buildService());
5200 o.add(buildService()); 5200 o.add(buildService());
5201 return o; 5201 return o;
5202 } 5202 }
5203 5203
5204 checkUnnamed607(core.List<api.Service> o) { 5204 checkUnnamed346(core.List<api.Service> o) {
5205 unittest.expect(o, unittest.hasLength(2)); 5205 unittest.expect(o, unittest.hasLength(2));
5206 checkService(o[0]); 5206 checkService(o[0]);
5207 checkService(o[1]); 5207 checkService(o[1]);
5208 } 5208 }
5209 5209
5210 core.int buildCounterShippingSettings = 0; 5210 core.int buildCounterShippingSettings = 0;
5211 buildShippingSettings() { 5211 buildShippingSettings() {
5212 var o = new api.ShippingSettings(); 5212 var o = new api.ShippingSettings();
5213 buildCounterShippingSettings++; 5213 buildCounterShippingSettings++;
5214 if (buildCounterShippingSettings < 3) { 5214 if (buildCounterShippingSettings < 3) {
5215 o.accountId = "foo"; 5215 o.accountId = "foo";
5216 o.postalCodeGroups = buildUnnamed606(); 5216 o.postalCodeGroups = buildUnnamed345();
5217 o.services = buildUnnamed607(); 5217 o.services = buildUnnamed346();
5218 } 5218 }
5219 buildCounterShippingSettings--; 5219 buildCounterShippingSettings--;
5220 return o; 5220 return o;
5221 } 5221 }
5222 5222
5223 checkShippingSettings(api.ShippingSettings o) { 5223 checkShippingSettings(api.ShippingSettings o) {
5224 buildCounterShippingSettings++; 5224 buildCounterShippingSettings++;
5225 if (buildCounterShippingSettings < 3) { 5225 if (buildCounterShippingSettings < 3) {
5226 unittest.expect(o.accountId, unittest.equals('foo')); 5226 unittest.expect(o.accountId, unittest.equals('foo'));
5227 checkUnnamed606(o.postalCodeGroups); 5227 checkUnnamed345(o.postalCodeGroups);
5228 checkUnnamed607(o.services); 5228 checkUnnamed346(o.services);
5229 } 5229 }
5230 buildCounterShippingSettings--; 5230 buildCounterShippingSettings--;
5231 } 5231 }
5232 5232
5233 buildUnnamed608() { 5233 buildUnnamed347() {
5234 var o = new core.List<api.ShippingsettingsCustomBatchRequestEntry>(); 5234 var o = new core.List<api.ShippingsettingsCustomBatchRequestEntry>();
5235 o.add(buildShippingsettingsCustomBatchRequestEntry()); 5235 o.add(buildShippingsettingsCustomBatchRequestEntry());
5236 o.add(buildShippingsettingsCustomBatchRequestEntry()); 5236 o.add(buildShippingsettingsCustomBatchRequestEntry());
5237 return o; 5237 return o;
5238 } 5238 }
5239 5239
5240 checkUnnamed608(core.List<api.ShippingsettingsCustomBatchRequestEntry> o) { 5240 checkUnnamed347(core.List<api.ShippingsettingsCustomBatchRequestEntry> o) {
5241 unittest.expect(o, unittest.hasLength(2)); 5241 unittest.expect(o, unittest.hasLength(2));
5242 checkShippingsettingsCustomBatchRequestEntry(o[0]); 5242 checkShippingsettingsCustomBatchRequestEntry(o[0]);
5243 checkShippingsettingsCustomBatchRequestEntry(o[1]); 5243 checkShippingsettingsCustomBatchRequestEntry(o[1]);
5244 } 5244 }
5245 5245
5246 core.int buildCounterShippingsettingsCustomBatchRequest = 0; 5246 core.int buildCounterShippingsettingsCustomBatchRequest = 0;
5247 buildShippingsettingsCustomBatchRequest() { 5247 buildShippingsettingsCustomBatchRequest() {
5248 var o = new api.ShippingsettingsCustomBatchRequest(); 5248 var o = new api.ShippingsettingsCustomBatchRequest();
5249 buildCounterShippingsettingsCustomBatchRequest++; 5249 buildCounterShippingsettingsCustomBatchRequest++;
5250 if (buildCounterShippingsettingsCustomBatchRequest < 3) { 5250 if (buildCounterShippingsettingsCustomBatchRequest < 3) {
5251 o.entries = buildUnnamed608(); 5251 o.entries = buildUnnamed347();
5252 } 5252 }
5253 buildCounterShippingsettingsCustomBatchRequest--; 5253 buildCounterShippingsettingsCustomBatchRequest--;
5254 return o; 5254 return o;
5255 } 5255 }
5256 5256
5257 checkShippingsettingsCustomBatchRequest(api.ShippingsettingsCustomBatchRequest o ) { 5257 checkShippingsettingsCustomBatchRequest(api.ShippingsettingsCustomBatchRequest o ) {
5258 buildCounterShippingsettingsCustomBatchRequest++; 5258 buildCounterShippingsettingsCustomBatchRequest++;
5259 if (buildCounterShippingsettingsCustomBatchRequest < 3) { 5259 if (buildCounterShippingsettingsCustomBatchRequest < 3) {
5260 checkUnnamed608(o.entries); 5260 checkUnnamed347(o.entries);
5261 } 5261 }
5262 buildCounterShippingsettingsCustomBatchRequest--; 5262 buildCounterShippingsettingsCustomBatchRequest--;
5263 } 5263 }
5264 5264
5265 core.int buildCounterShippingsettingsCustomBatchRequestEntry = 0; 5265 core.int buildCounterShippingsettingsCustomBatchRequestEntry = 0;
5266 buildShippingsettingsCustomBatchRequestEntry() { 5266 buildShippingsettingsCustomBatchRequestEntry() {
5267 var o = new api.ShippingsettingsCustomBatchRequestEntry(); 5267 var o = new api.ShippingsettingsCustomBatchRequestEntry();
5268 buildCounterShippingsettingsCustomBatchRequestEntry++; 5268 buildCounterShippingsettingsCustomBatchRequestEntry++;
5269 if (buildCounterShippingsettingsCustomBatchRequestEntry < 3) { 5269 if (buildCounterShippingsettingsCustomBatchRequestEntry < 3) {
5270 o.accountId = "foo"; 5270 o.accountId = "foo";
(...skipping 11 matching lines...) Expand all
5282 if (buildCounterShippingsettingsCustomBatchRequestEntry < 3) { 5282 if (buildCounterShippingsettingsCustomBatchRequestEntry < 3) {
5283 unittest.expect(o.accountId, unittest.equals('foo')); 5283 unittest.expect(o.accountId, unittest.equals('foo'));
5284 unittest.expect(o.batchId, unittest.equals(42)); 5284 unittest.expect(o.batchId, unittest.equals(42));
5285 unittest.expect(o.merchantId, unittest.equals('foo')); 5285 unittest.expect(o.merchantId, unittest.equals('foo'));
5286 unittest.expect(o.method, unittest.equals('foo')); 5286 unittest.expect(o.method, unittest.equals('foo'));
5287 checkShippingSettings(o.shippingSettings); 5287 checkShippingSettings(o.shippingSettings);
5288 } 5288 }
5289 buildCounterShippingsettingsCustomBatchRequestEntry--; 5289 buildCounterShippingsettingsCustomBatchRequestEntry--;
5290 } 5290 }
5291 5291
5292 buildUnnamed609() { 5292 buildUnnamed348() {
5293 var o = new core.List<api.ShippingsettingsCustomBatchResponseEntry>(); 5293 var o = new core.List<api.ShippingsettingsCustomBatchResponseEntry>();
5294 o.add(buildShippingsettingsCustomBatchResponseEntry()); 5294 o.add(buildShippingsettingsCustomBatchResponseEntry());
5295 o.add(buildShippingsettingsCustomBatchResponseEntry()); 5295 o.add(buildShippingsettingsCustomBatchResponseEntry());
5296 return o; 5296 return o;
5297 } 5297 }
5298 5298
5299 checkUnnamed609(core.List<api.ShippingsettingsCustomBatchResponseEntry> o) { 5299 checkUnnamed348(core.List<api.ShippingsettingsCustomBatchResponseEntry> o) {
5300 unittest.expect(o, unittest.hasLength(2)); 5300 unittest.expect(o, unittest.hasLength(2));
5301 checkShippingsettingsCustomBatchResponseEntry(o[0]); 5301 checkShippingsettingsCustomBatchResponseEntry(o[0]);
5302 checkShippingsettingsCustomBatchResponseEntry(o[1]); 5302 checkShippingsettingsCustomBatchResponseEntry(o[1]);
5303 } 5303 }
5304 5304
5305 core.int buildCounterShippingsettingsCustomBatchResponse = 0; 5305 core.int buildCounterShippingsettingsCustomBatchResponse = 0;
5306 buildShippingsettingsCustomBatchResponse() { 5306 buildShippingsettingsCustomBatchResponse() {
5307 var o = new api.ShippingsettingsCustomBatchResponse(); 5307 var o = new api.ShippingsettingsCustomBatchResponse();
5308 buildCounterShippingsettingsCustomBatchResponse++; 5308 buildCounterShippingsettingsCustomBatchResponse++;
5309 if (buildCounterShippingsettingsCustomBatchResponse < 3) { 5309 if (buildCounterShippingsettingsCustomBatchResponse < 3) {
5310 o.entries = buildUnnamed609(); 5310 o.entries = buildUnnamed348();
5311 o.kind = "foo"; 5311 o.kind = "foo";
5312 } 5312 }
5313 buildCounterShippingsettingsCustomBatchResponse--; 5313 buildCounterShippingsettingsCustomBatchResponse--;
5314 return o; 5314 return o;
5315 } 5315 }
5316 5316
5317 checkShippingsettingsCustomBatchResponse(api.ShippingsettingsCustomBatchResponse o) { 5317 checkShippingsettingsCustomBatchResponse(api.ShippingsettingsCustomBatchResponse o) {
5318 buildCounterShippingsettingsCustomBatchResponse++; 5318 buildCounterShippingsettingsCustomBatchResponse++;
5319 if (buildCounterShippingsettingsCustomBatchResponse < 3) { 5319 if (buildCounterShippingsettingsCustomBatchResponse < 3) {
5320 checkUnnamed609(o.entries); 5320 checkUnnamed348(o.entries);
5321 unittest.expect(o.kind, unittest.equals('foo')); 5321 unittest.expect(o.kind, unittest.equals('foo'));
5322 } 5322 }
5323 buildCounterShippingsettingsCustomBatchResponse--; 5323 buildCounterShippingsettingsCustomBatchResponse--;
5324 } 5324 }
5325 5325
5326 core.int buildCounterShippingsettingsCustomBatchResponseEntry = 0; 5326 core.int buildCounterShippingsettingsCustomBatchResponseEntry = 0;
5327 buildShippingsettingsCustomBatchResponseEntry() { 5327 buildShippingsettingsCustomBatchResponseEntry() {
5328 var o = new api.ShippingsettingsCustomBatchResponseEntry(); 5328 var o = new api.ShippingsettingsCustomBatchResponseEntry();
5329 buildCounterShippingsettingsCustomBatchResponseEntry++; 5329 buildCounterShippingsettingsCustomBatchResponseEntry++;
5330 if (buildCounterShippingsettingsCustomBatchResponseEntry < 3) { 5330 if (buildCounterShippingsettingsCustomBatchResponseEntry < 3) {
(...skipping 10 matching lines...) Expand all
5341 buildCounterShippingsettingsCustomBatchResponseEntry++; 5341 buildCounterShippingsettingsCustomBatchResponseEntry++;
5342 if (buildCounterShippingsettingsCustomBatchResponseEntry < 3) { 5342 if (buildCounterShippingsettingsCustomBatchResponseEntry < 3) {
5343 unittest.expect(o.batchId, unittest.equals(42)); 5343 unittest.expect(o.batchId, unittest.equals(42));
5344 checkErrors(o.errors); 5344 checkErrors(o.errors);
5345 unittest.expect(o.kind, unittest.equals('foo')); 5345 unittest.expect(o.kind, unittest.equals('foo'));
5346 checkShippingSettings(o.shippingSettings); 5346 checkShippingSettings(o.shippingSettings);
5347 } 5347 }
5348 buildCounterShippingsettingsCustomBatchResponseEntry--; 5348 buildCounterShippingsettingsCustomBatchResponseEntry--;
5349 } 5349 }
5350 5350
5351 buildUnnamed610() { 5351 buildUnnamed349() {
5352 var o = new core.List<api.CarriersCarrier>(); 5352 var o = new core.List<api.CarriersCarrier>();
5353 o.add(buildCarriersCarrier()); 5353 o.add(buildCarriersCarrier());
5354 o.add(buildCarriersCarrier()); 5354 o.add(buildCarriersCarrier());
5355 return o; 5355 return o;
5356 } 5356 }
5357 5357
5358 checkUnnamed610(core.List<api.CarriersCarrier> o) { 5358 checkUnnamed349(core.List<api.CarriersCarrier> o) {
5359 unittest.expect(o, unittest.hasLength(2)); 5359 unittest.expect(o, unittest.hasLength(2));
5360 checkCarriersCarrier(o[0]); 5360 checkCarriersCarrier(o[0]);
5361 checkCarriersCarrier(o[1]); 5361 checkCarriersCarrier(o[1]);
5362 } 5362 }
5363 5363
5364 core.int buildCounterShippingsettingsGetSupportedCarriersResponse = 0; 5364 core.int buildCounterShippingsettingsGetSupportedCarriersResponse = 0;
5365 buildShippingsettingsGetSupportedCarriersResponse() { 5365 buildShippingsettingsGetSupportedCarriersResponse() {
5366 var o = new api.ShippingsettingsGetSupportedCarriersResponse(); 5366 var o = new api.ShippingsettingsGetSupportedCarriersResponse();
5367 buildCounterShippingsettingsGetSupportedCarriersResponse++; 5367 buildCounterShippingsettingsGetSupportedCarriersResponse++;
5368 if (buildCounterShippingsettingsGetSupportedCarriersResponse < 3) { 5368 if (buildCounterShippingsettingsGetSupportedCarriersResponse < 3) {
5369 o.carriers = buildUnnamed610(); 5369 o.carriers = buildUnnamed349();
5370 o.kind = "foo"; 5370 o.kind = "foo";
5371 } 5371 }
5372 buildCounterShippingsettingsGetSupportedCarriersResponse--; 5372 buildCounterShippingsettingsGetSupportedCarriersResponse--;
5373 return o; 5373 return o;
5374 } 5374 }
5375 5375
5376 checkShippingsettingsGetSupportedCarriersResponse(api.ShippingsettingsGetSupport edCarriersResponse o) { 5376 checkShippingsettingsGetSupportedCarriersResponse(api.ShippingsettingsGetSupport edCarriersResponse o) {
5377 buildCounterShippingsettingsGetSupportedCarriersResponse++; 5377 buildCounterShippingsettingsGetSupportedCarriersResponse++;
5378 if (buildCounterShippingsettingsGetSupportedCarriersResponse < 3) { 5378 if (buildCounterShippingsettingsGetSupportedCarriersResponse < 3) {
5379 checkUnnamed610(o.carriers); 5379 checkUnnamed349(o.carriers);
5380 unittest.expect(o.kind, unittest.equals('foo')); 5380 unittest.expect(o.kind, unittest.equals('foo'));
5381 } 5381 }
5382 buildCounterShippingsettingsGetSupportedCarriersResponse--; 5382 buildCounterShippingsettingsGetSupportedCarriersResponse--;
5383 } 5383 }
5384 5384
5385 buildUnnamed611() { 5385 buildUnnamed350() {
5386 var o = new core.List<api.ShippingSettings>(); 5386 var o = new core.List<api.ShippingSettings>();
5387 o.add(buildShippingSettings()); 5387 o.add(buildShippingSettings());
5388 o.add(buildShippingSettings()); 5388 o.add(buildShippingSettings());
5389 return o; 5389 return o;
5390 } 5390 }
5391 5391
5392 checkUnnamed611(core.List<api.ShippingSettings> o) { 5392 checkUnnamed350(core.List<api.ShippingSettings> o) {
5393 unittest.expect(o, unittest.hasLength(2)); 5393 unittest.expect(o, unittest.hasLength(2));
5394 checkShippingSettings(o[0]); 5394 checkShippingSettings(o[0]);
5395 checkShippingSettings(o[1]); 5395 checkShippingSettings(o[1]);
5396 } 5396 }
5397 5397
5398 core.int buildCounterShippingsettingsListResponse = 0; 5398 core.int buildCounterShippingsettingsListResponse = 0;
5399 buildShippingsettingsListResponse() { 5399 buildShippingsettingsListResponse() {
5400 var o = new api.ShippingsettingsListResponse(); 5400 var o = new api.ShippingsettingsListResponse();
5401 buildCounterShippingsettingsListResponse++; 5401 buildCounterShippingsettingsListResponse++;
5402 if (buildCounterShippingsettingsListResponse < 3) { 5402 if (buildCounterShippingsettingsListResponse < 3) {
5403 o.kind = "foo"; 5403 o.kind = "foo";
5404 o.nextPageToken = "foo"; 5404 o.nextPageToken = "foo";
5405 o.resources = buildUnnamed611(); 5405 o.resources = buildUnnamed350();
5406 } 5406 }
5407 buildCounterShippingsettingsListResponse--; 5407 buildCounterShippingsettingsListResponse--;
5408 return o; 5408 return o;
5409 } 5409 }
5410 5410
5411 checkShippingsettingsListResponse(api.ShippingsettingsListResponse o) { 5411 checkShippingsettingsListResponse(api.ShippingsettingsListResponse o) {
5412 buildCounterShippingsettingsListResponse++; 5412 buildCounterShippingsettingsListResponse++;
5413 if (buildCounterShippingsettingsListResponse < 3) { 5413 if (buildCounterShippingsettingsListResponse < 3) {
5414 unittest.expect(o.kind, unittest.equals('foo')); 5414 unittest.expect(o.kind, unittest.equals('foo'));
5415 unittest.expect(o.nextPageToken, unittest.equals('foo')); 5415 unittest.expect(o.nextPageToken, unittest.equals('foo'));
5416 checkUnnamed611(o.resources); 5416 checkUnnamed350(o.resources);
5417 } 5417 }
5418 buildCounterShippingsettingsListResponse--; 5418 buildCounterShippingsettingsListResponse--;
5419 } 5419 }
5420 5420
5421 buildUnnamed612() { 5421 buildUnnamed351() {
5422 var o = new core.List<api.Row>(); 5422 var o = new core.List<api.Row>();
5423 o.add(buildRow()); 5423 o.add(buildRow());
5424 o.add(buildRow()); 5424 o.add(buildRow());
5425 return o; 5425 return o;
5426 } 5426 }
5427 5427
5428 checkUnnamed612(core.List<api.Row> o) { 5428 checkUnnamed351(core.List<api.Row> o) {
5429 unittest.expect(o, unittest.hasLength(2)); 5429 unittest.expect(o, unittest.hasLength(2));
5430 checkRow(o[0]); 5430 checkRow(o[0]);
5431 checkRow(o[1]); 5431 checkRow(o[1]);
5432 } 5432 }
5433 5433
5434 core.int buildCounterTable = 0; 5434 core.int buildCounterTable = 0;
5435 buildTable() { 5435 buildTable() {
5436 var o = new api.Table(); 5436 var o = new api.Table();
5437 buildCounterTable++; 5437 buildCounterTable++;
5438 if (buildCounterTable < 3) { 5438 if (buildCounterTable < 3) {
5439 o.columnHeaders = buildHeaders(); 5439 o.columnHeaders = buildHeaders();
5440 o.name = "foo"; 5440 o.name = "foo";
5441 o.rowHeaders = buildHeaders(); 5441 o.rowHeaders = buildHeaders();
5442 o.rows = buildUnnamed612(); 5442 o.rows = buildUnnamed351();
5443 } 5443 }
5444 buildCounterTable--; 5444 buildCounterTable--;
5445 return o; 5445 return o;
5446 } 5446 }
5447 5447
5448 checkTable(api.Table o) { 5448 checkTable(api.Table o) {
5449 buildCounterTable++; 5449 buildCounterTable++;
5450 if (buildCounterTable < 3) { 5450 if (buildCounterTable < 3) {
5451 checkHeaders(o.columnHeaders); 5451 checkHeaders(o.columnHeaders);
5452 unittest.expect(o.name, unittest.equals('foo')); 5452 unittest.expect(o.name, unittest.equals('foo'));
5453 checkHeaders(o.rowHeaders); 5453 checkHeaders(o.rowHeaders);
5454 checkUnnamed612(o.rows); 5454 checkUnnamed351(o.rows);
5455 } 5455 }
5456 buildCounterTable--; 5456 buildCounterTable--;
5457 } 5457 }
5458 5458
5459 buildUnnamed613() { 5459 buildUnnamed352() {
5460 var o = new core.List<api.TestOrderLineItem>(); 5460 var o = new core.List<api.TestOrderLineItem>();
5461 o.add(buildTestOrderLineItem()); 5461 o.add(buildTestOrderLineItem());
5462 o.add(buildTestOrderLineItem()); 5462 o.add(buildTestOrderLineItem());
5463 return o; 5463 return o;
5464 } 5464 }
5465 5465
5466 checkUnnamed613(core.List<api.TestOrderLineItem> o) { 5466 checkUnnamed352(core.List<api.TestOrderLineItem> o) {
5467 unittest.expect(o, unittest.hasLength(2)); 5467 unittest.expect(o, unittest.hasLength(2));
5468 checkTestOrderLineItem(o[0]); 5468 checkTestOrderLineItem(o[0]);
5469 checkTestOrderLineItem(o[1]); 5469 checkTestOrderLineItem(o[1]);
5470 } 5470 }
5471 5471
5472 buildUnnamed614() { 5472 buildUnnamed353() {
5473 var o = new core.List<api.OrderPromotion>(); 5473 var o = new core.List<api.OrderPromotion>();
5474 o.add(buildOrderPromotion()); 5474 o.add(buildOrderPromotion());
5475 o.add(buildOrderPromotion()); 5475 o.add(buildOrderPromotion());
5476 return o; 5476 return o;
5477 } 5477 }
5478 5478
5479 checkUnnamed614(core.List<api.OrderPromotion> o) { 5479 checkUnnamed353(core.List<api.OrderPromotion> o) {
5480 unittest.expect(o, unittest.hasLength(2)); 5480 unittest.expect(o, unittest.hasLength(2));
5481 checkOrderPromotion(o[0]); 5481 checkOrderPromotion(o[0]);
5482 checkOrderPromotion(o[1]); 5482 checkOrderPromotion(o[1]);
5483 } 5483 }
5484 5484
5485 core.int buildCounterTestOrder = 0; 5485 core.int buildCounterTestOrder = 0;
5486 buildTestOrder() { 5486 buildTestOrder() {
5487 var o = new api.TestOrder(); 5487 var o = new api.TestOrder();
5488 buildCounterTestOrder++; 5488 buildCounterTestOrder++;
5489 if (buildCounterTestOrder < 3) { 5489 if (buildCounterTestOrder < 3) {
5490 o.customer = buildTestOrderCustomer(); 5490 o.customer = buildTestOrderCustomer();
5491 o.kind = "foo"; 5491 o.kind = "foo";
5492 o.lineItems = buildUnnamed613(); 5492 o.lineItems = buildUnnamed352();
5493 o.paymentMethod = buildTestOrderPaymentMethod(); 5493 o.paymentMethod = buildTestOrderPaymentMethod();
5494 o.predefinedDeliveryAddress = "foo"; 5494 o.predefinedDeliveryAddress = "foo";
5495 o.promotions = buildUnnamed614(); 5495 o.promotions = buildUnnamed353();
5496 o.shippingCost = buildPrice(); 5496 o.shippingCost = buildPrice();
5497 o.shippingCostTax = buildPrice(); 5497 o.shippingCostTax = buildPrice();
5498 o.shippingOption = "foo"; 5498 o.shippingOption = "foo";
5499 } 5499 }
5500 buildCounterTestOrder--; 5500 buildCounterTestOrder--;
5501 return o; 5501 return o;
5502 } 5502 }
5503 5503
5504 checkTestOrder(api.TestOrder o) { 5504 checkTestOrder(api.TestOrder o) {
5505 buildCounterTestOrder++; 5505 buildCounterTestOrder++;
5506 if (buildCounterTestOrder < 3) { 5506 if (buildCounterTestOrder < 3) {
5507 checkTestOrderCustomer(o.customer); 5507 checkTestOrderCustomer(o.customer);
5508 unittest.expect(o.kind, unittest.equals('foo')); 5508 unittest.expect(o.kind, unittest.equals('foo'));
5509 checkUnnamed613(o.lineItems); 5509 checkUnnamed352(o.lineItems);
5510 checkTestOrderPaymentMethod(o.paymentMethod); 5510 checkTestOrderPaymentMethod(o.paymentMethod);
5511 unittest.expect(o.predefinedDeliveryAddress, unittest.equals('foo')); 5511 unittest.expect(o.predefinedDeliveryAddress, unittest.equals('foo'));
5512 checkUnnamed614(o.promotions); 5512 checkUnnamed353(o.promotions);
5513 checkPrice(o.shippingCost); 5513 checkPrice(o.shippingCost);
5514 checkPrice(o.shippingCostTax); 5514 checkPrice(o.shippingCostTax);
5515 unittest.expect(o.shippingOption, unittest.equals('foo')); 5515 unittest.expect(o.shippingOption, unittest.equals('foo'));
5516 } 5516 }
5517 buildCounterTestOrder--; 5517 buildCounterTestOrder--;
5518 } 5518 }
5519 5519
5520 core.int buildCounterTestOrderCustomer = 0; 5520 core.int buildCounterTestOrderCustomer = 0;
5521 buildTestOrderCustomer() { 5521 buildTestOrderCustomer() {
5522 var o = new api.TestOrderCustomer(); 5522 var o = new api.TestOrderCustomer();
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
5560 if (buildCounterTestOrderLineItem < 3) { 5560 if (buildCounterTestOrderLineItem < 3) {
5561 checkTestOrderLineItemProduct(o.product); 5561 checkTestOrderLineItemProduct(o.product);
5562 unittest.expect(o.quantityOrdered, unittest.equals(42)); 5562 unittest.expect(o.quantityOrdered, unittest.equals(42));
5563 checkOrderLineItemReturnInfo(o.returnInfo); 5563 checkOrderLineItemReturnInfo(o.returnInfo);
5564 checkOrderLineItemShippingDetails(o.shippingDetails); 5564 checkOrderLineItemShippingDetails(o.shippingDetails);
5565 checkPrice(o.unitTax); 5565 checkPrice(o.unitTax);
5566 } 5566 }
5567 buildCounterTestOrderLineItem--; 5567 buildCounterTestOrderLineItem--;
5568 } 5568 }
5569 5569
5570 buildUnnamed615() { 5570 buildUnnamed354() {
5571 var o = new core.List<api.OrderLineItemProductVariantAttribute>(); 5571 var o = new core.List<api.OrderLineItemProductVariantAttribute>();
5572 o.add(buildOrderLineItemProductVariantAttribute()); 5572 o.add(buildOrderLineItemProductVariantAttribute());
5573 o.add(buildOrderLineItemProductVariantAttribute()); 5573 o.add(buildOrderLineItemProductVariantAttribute());
5574 return o; 5574 return o;
5575 } 5575 }
5576 5576
5577 checkUnnamed615(core.List<api.OrderLineItemProductVariantAttribute> o) { 5577 checkUnnamed354(core.List<api.OrderLineItemProductVariantAttribute> o) {
5578 unittest.expect(o, unittest.hasLength(2)); 5578 unittest.expect(o, unittest.hasLength(2));
5579 checkOrderLineItemProductVariantAttribute(o[0]); 5579 checkOrderLineItemProductVariantAttribute(o[0]);
5580 checkOrderLineItemProductVariantAttribute(o[1]); 5580 checkOrderLineItemProductVariantAttribute(o[1]);
5581 } 5581 }
5582 5582
5583 core.int buildCounterTestOrderLineItemProduct = 0; 5583 core.int buildCounterTestOrderLineItemProduct = 0;
5584 buildTestOrderLineItemProduct() { 5584 buildTestOrderLineItemProduct() {
5585 var o = new api.TestOrderLineItemProduct(); 5585 var o = new api.TestOrderLineItemProduct();
5586 buildCounterTestOrderLineItemProduct++; 5586 buildCounterTestOrderLineItemProduct++;
5587 if (buildCounterTestOrderLineItemProduct < 3) { 5587 if (buildCounterTestOrderLineItemProduct < 3) {
5588 o.brand = "foo"; 5588 o.brand = "foo";
5589 o.channel = "foo"; 5589 o.channel = "foo";
5590 o.condition = "foo"; 5590 o.condition = "foo";
5591 o.contentLanguage = "foo"; 5591 o.contentLanguage = "foo";
5592 o.gtin = "foo"; 5592 o.gtin = "foo";
5593 o.imageLink = "foo"; 5593 o.imageLink = "foo";
5594 o.itemGroupId = "foo"; 5594 o.itemGroupId = "foo";
5595 o.mpn = "foo"; 5595 o.mpn = "foo";
5596 o.offerId = "foo"; 5596 o.offerId = "foo";
5597 o.price = buildPrice(); 5597 o.price = buildPrice();
5598 o.targetCountry = "foo"; 5598 o.targetCountry = "foo";
5599 o.title = "foo"; 5599 o.title = "foo";
5600 o.variantAttributes = buildUnnamed615(); 5600 o.variantAttributes = buildUnnamed354();
5601 } 5601 }
5602 buildCounterTestOrderLineItemProduct--; 5602 buildCounterTestOrderLineItemProduct--;
5603 return o; 5603 return o;
5604 } 5604 }
5605 5605
5606 checkTestOrderLineItemProduct(api.TestOrderLineItemProduct o) { 5606 checkTestOrderLineItemProduct(api.TestOrderLineItemProduct o) {
5607 buildCounterTestOrderLineItemProduct++; 5607 buildCounterTestOrderLineItemProduct++;
5608 if (buildCounterTestOrderLineItemProduct < 3) { 5608 if (buildCounterTestOrderLineItemProduct < 3) {
5609 unittest.expect(o.brand, unittest.equals('foo')); 5609 unittest.expect(o.brand, unittest.equals('foo'));
5610 unittest.expect(o.channel, unittest.equals('foo')); 5610 unittest.expect(o.channel, unittest.equals('foo'));
5611 unittest.expect(o.condition, unittest.equals('foo')); 5611 unittest.expect(o.condition, unittest.equals('foo'));
5612 unittest.expect(o.contentLanguage, unittest.equals('foo')); 5612 unittest.expect(o.contentLanguage, unittest.equals('foo'));
5613 unittest.expect(o.gtin, unittest.equals('foo')); 5613 unittest.expect(o.gtin, unittest.equals('foo'));
5614 unittest.expect(o.imageLink, unittest.equals('foo')); 5614 unittest.expect(o.imageLink, unittest.equals('foo'));
5615 unittest.expect(o.itemGroupId, unittest.equals('foo')); 5615 unittest.expect(o.itemGroupId, unittest.equals('foo'));
5616 unittest.expect(o.mpn, unittest.equals('foo')); 5616 unittest.expect(o.mpn, unittest.equals('foo'));
5617 unittest.expect(o.offerId, unittest.equals('foo')); 5617 unittest.expect(o.offerId, unittest.equals('foo'));
5618 checkPrice(o.price); 5618 checkPrice(o.price);
5619 unittest.expect(o.targetCountry, unittest.equals('foo')); 5619 unittest.expect(o.targetCountry, unittest.equals('foo'));
5620 unittest.expect(o.title, unittest.equals('foo')); 5620 unittest.expect(o.title, unittest.equals('foo'));
5621 checkUnnamed615(o.variantAttributes); 5621 checkUnnamed354(o.variantAttributes);
5622 } 5622 }
5623 buildCounterTestOrderLineItemProduct--; 5623 buildCounterTestOrderLineItemProduct--;
5624 } 5624 }
5625 5625
5626 core.int buildCounterTestOrderPaymentMethod = 0; 5626 core.int buildCounterTestOrderPaymentMethod = 0;
5627 buildTestOrderPaymentMethod() { 5627 buildTestOrderPaymentMethod() {
5628 var o = new api.TestOrderPaymentMethod(); 5628 var o = new api.TestOrderPaymentMethod();
5629 buildCounterTestOrderPaymentMethod++; 5629 buildCounterTestOrderPaymentMethod++;
5630 if (buildCounterTestOrderPaymentMethod < 3) { 5630 if (buildCounterTestOrderPaymentMethod < 3) {
5631 o.expirationMonth = 42; 5631 o.expirationMonth = 42;
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
5691 5691
5692 checkWeight(api.Weight o) { 5692 checkWeight(api.Weight o) {
5693 buildCounterWeight++; 5693 buildCounterWeight++;
5694 if (buildCounterWeight < 3) { 5694 if (buildCounterWeight < 3) {
5695 unittest.expect(o.unit, unittest.equals('foo')); 5695 unittest.expect(o.unit, unittest.equals('foo'));
5696 unittest.expect(o.value, unittest.equals('foo')); 5696 unittest.expect(o.value, unittest.equals('foo'));
5697 } 5697 }
5698 buildCounterWeight--; 5698 buildCounterWeight--;
5699 } 5699 }
5700 5700
5701 buildUnnamed616() { 5701 buildUnnamed355() {
5702 var o = new core.List<core.String>(); 5702 var o = new core.List<core.String>();
5703 o.add("foo"); 5703 o.add("foo");
5704 o.add("foo"); 5704 o.add("foo");
5705 return o; 5705 return o;
5706 } 5706 }
5707 5707
5708 checkUnnamed616(core.List<core.String> o) { 5708 checkUnnamed355(core.List<core.String> o) {
5709 unittest.expect(o, unittest.hasLength(2)); 5709 unittest.expect(o, unittest.hasLength(2));
5710 unittest.expect(o[0], unittest.equals('foo')); 5710 unittest.expect(o[0], unittest.equals('foo'));
5711 unittest.expect(o[1], unittest.equals('foo')); 5711 unittest.expect(o[1], unittest.equals('foo'));
5712 } 5712 }
5713 5713
5714 5714
5715 main() { 5715 main() {
5716 unittest.group("obj-schema-Account", () { 5716 unittest.group("obj-schema-Account", () {
5717 unittest.test("to-json--from-json", () { 5717 unittest.test("to-json--from-json", () {
5718 var o = buildAccount(); 5718 var o = buildAccount();
(...skipping 3503 matching lines...) Expand 10 before | Expand all | Expand 10 after
9222 9222
9223 var mock = new HttpServerMock(); 9223 var mock = new HttpServerMock();
9224 api.OrdersResourceApi res = new api.ContentApi(mock).orders; 9224 api.OrdersResourceApi res = new api.ContentApi(mock).orders;
9225 var arg_merchantId = "foo"; 9225 var arg_merchantId = "foo";
9226 var arg_acknowledged = true; 9226 var arg_acknowledged = true;
9227 var arg_maxResults = 42; 9227 var arg_maxResults = 42;
9228 var arg_orderBy = "foo"; 9228 var arg_orderBy = "foo";
9229 var arg_pageToken = "foo"; 9229 var arg_pageToken = "foo";
9230 var arg_placedDateEnd = "foo"; 9230 var arg_placedDateEnd = "foo";
9231 var arg_placedDateStart = "foo"; 9231 var arg_placedDateStart = "foo";
9232 var arg_statuses = buildUnnamed616(); 9232 var arg_statuses = buildUnnamed355();
9233 mock.register(unittest.expectAsync((http.BaseRequest req, json) { 9233 mock.register(unittest.expectAsync((http.BaseRequest req, json) {
9234 var path = (req.url).path; 9234 var path = (req.url).path;
9235 var pathOffset = 0; 9235 var pathOffset = 0;
9236 var index; 9236 var index;
9237 var subPart; 9237 var subPart;
9238 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ als("/")); 9238 unittest.expect(path.substring(pathOffset, pathOffset + 1), unittest.equ als("/"));
9239 pathOffset += 1; 9239 pathOffset += 1;
9240 9240
9241 var query = (req.url).query; 9241 var query = (req.url).query;
9242 var queryOffset = 0; 9242 var queryOffset = 0;
(...skipping 929 matching lines...) Expand 10 before | Expand all | Expand 10 after
10172 res.update(arg_request, arg_merchantId, arg_accountId, dryRun: arg_dryRun) .then(unittest.expectAsync(((api.ShippingSettings response) { 10172 res.update(arg_request, arg_merchantId, arg_accountId, dryRun: arg_dryRun) .then(unittest.expectAsync(((api.ShippingSettings response) {
10173 checkShippingSettings(response); 10173 checkShippingSettings(response);
10174 }))); 10174 })));
10175 }); 10175 });
10176 10176
10177 }); 10177 });
10178 10178
10179 10179
10180 } 10180 }
10181 10181
OLDNEW
« no previous file with comments | « generated/googleapis/test/container/v1_test.dart ('k') | generated/googleapis/test/content/v2sandbox_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698