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

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

Issue 663113002: Api roll 4: 2014-10-20 (Closed) Base URL: git@github.com:dart-lang/googleapis.git@master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « generated/googleapis/lib/gmail/v1.dart ('k') | generated/googleapis/lib/reseller/v1.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 library googleapis.mapsengine.v1; 1 library googleapis.mapsengine.v1;
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:crypto/crypto.dart" as crypto; 8 import "package:crypto/crypto.dart" as crypto;
9 import 'package:http/http.dart' as http; 9 import 'package:http/http.dart' as http;
10 import '../src/common_internal.dart' as common_internal; 10 import '../src/common_internal.dart' as common_internal;
(...skipping 7185 matching lines...) Expand 10 before | Expand all | Expand 10 after
7196 ProcessResponse.fromJson(core.Map _json) { 7196 ProcessResponse.fromJson(core.Map _json) {
7197 } 7197 }
7198 7198
7199 core.Map toJson() { 7199 core.Map toJson() {
7200 var _json = new core.Map(); 7200 var _json = new core.Map();
7201 return _json; 7201 return _json;
7202 } 7202 }
7203 } 7203 }
7204 7204
7205 7205
7206 /** A project groups a collection of resources. */ 7206 /** A Maps Engine project groups a collection of resources. */
7207 class Project { 7207 class Project {
7208 /** An ID used to refer to this project. */ 7208 /** An ID used to refer to this Maps Engine project. */
7209 core.String id; 7209 core.String id;
7210 7210
7211 /** A user provided name for this project. */ 7211 /** A user provided name for this Maps Engine project. */
7212 core.String name; 7212 core.String name;
7213 7213
7214 7214
7215 Project(); 7215 Project();
7216 7216
7217 Project.fromJson(core.Map _json) { 7217 Project.fromJson(core.Map _json) {
7218 if (_json.containsKey("id")) { 7218 if (_json.containsKey("id")) {
7219 id = _json["id"]; 7219 id = _json["id"];
7220 } 7220 }
7221 if (_json.containsKey("name")) { 7221 if (_json.containsKey("name")) {
(...skipping 1680 matching lines...) Expand 10 before | Expand all | Expand 10 after
8902 _json["max"] = max; 8902 _json["max"] = max;
8903 } 8903 }
8904 if (min != null) { 8904 if (min != null) {
8905 _json["min"] = min; 8905 _json["min"] = min;
8906 } 8906 }
8907 return _json; 8907 return _json;
8908 } 8908 }
8909 } 8909 }
8910 8910
8911 8911
OLDNEW
« no previous file with comments | « generated/googleapis/lib/gmail/v1.dart ('k') | generated/googleapis/lib/reseller/v1.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698