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

Side by Side Diff: generated/googleapis/lib/doubleclickbidmanager/v1.dart

Issue 2973303002: Api-Roll 51: 2017-07-10 (Closed)
Patch Set: Created 3 years, 5 months 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 // This is a generated file (see the discoveryapis_generator project). 1 // This is a generated file (see the discoveryapis_generator project).
2 2
3 library googleapis.doubleclickbidmanager.v1; 3 library googleapis.doubleclickbidmanager.v1;
4 4
5 import 'dart:core' as core; 5 import 'dart:core' as core;
6 import 'dart:async' as async; 6 import 'dart:async' as async;
7 import 'dart:convert' as convert; 7 import 'dart:convert' as convert;
8 8
9 import 'package:_discoveryapis_commons/_discoveryapis_commons.dart' as commons; 9 import 'package:_discoveryapis_commons/_discoveryapis_commons.dart' as commons;
10 import 'package:http/http.dart' as http; 10 import 'package:http/http.dart' as http;
(...skipping 469 matching lines...) Expand 10 before | Expand all | Expand 10 after
480 if (format != null) { 480 if (format != null) {
481 _json["format"] = format; 481 _json["format"] = format;
482 } 482 }
483 return _json; 483 return _json;
484 } 484 }
485 } 485 }
486 486
487 /** Download line items response. */ 487 /** Download line items response. */
488 class DownloadLineItemsResponse { 488 class DownloadLineItemsResponse {
489 /** 489 /**
490 * Retrieved line items in CSV format. Refer to Entity Write File Format or 490 * Retrieved line items in CSV format. For more information about file
491 * Structured Data File Format for more information on file formats. 491 * formats, see Entity Write File Format.
492 */ 492 */
493 core.String lineItems; 493 core.String lineItems;
494 494
495 DownloadLineItemsResponse(); 495 DownloadLineItemsResponse();
496 496
497 DownloadLineItemsResponse.fromJson(core.Map _json) { 497 DownloadLineItemsResponse.fromJson(core.Map _json) {
498 if (_json.containsKey("lineItems")) { 498 if (_json.containsKey("lineItems")) {
499 lineItems = _json["lineItems"]; 499 lineItems = _json["lineItems"];
500 } 500 }
501 } 501 }
(...skipping 1169 matching lines...) Expand 10 before | Expand all | Expand 10 after
1671 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c ore.Object>(); 1671 final core.Map<core.String, core.Object> _json = new core.Map<core.String, c ore.Object>();
1672 if (errors != null) { 1672 if (errors != null) {
1673 _json["errors"] = errors; 1673 _json["errors"] = errors;
1674 } 1674 }
1675 if (rowStatus != null) { 1675 if (rowStatus != null) {
1676 _json["rowStatus"] = rowStatus.map((value) => (value).toJson()).toList(); 1676 _json["rowStatus"] = rowStatus.map((value) => (value).toJson()).toList();
1677 } 1677 }
1678 return _json; 1678 return _json;
1679 } 1679 }
1680 } 1680 }
OLDNEW
« no previous file with comments | « generated/googleapis/lib/deploymentmanager/v2.dart ('k') | generated/googleapis/lib/drive/v2.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698