| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |