OLD | NEW |
1 library googleapis.prediction.v1_6; | 1 library googleapis.prediction.v1_6; |
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 1347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1358 /** The most likely class label (Categorical models only). */ | 1358 /** The most likely class label (Categorical models only). */ |
1359 core.String outputLabel; | 1359 core.String outputLabel; |
1360 | 1360 |
1361 /** | 1361 /** |
1362 * A list of class labels with their estimated probabilities (Categorical | 1362 * A list of class labels with their estimated probabilities (Categorical |
1363 * models only). | 1363 * models only). |
1364 */ | 1364 */ |
1365 core.List<OutputOutputMulti> outputMulti; | 1365 core.List<OutputOutputMulti> outputMulti; |
1366 | 1366 |
1367 /** The estimated regression value (Regression models only). */ | 1367 /** The estimated regression value (Regression models only). */ |
1368 core.String outputValue; | 1368 core.double outputValue; |
1369 | 1369 |
1370 /** A URL to re-request this resource. */ | 1370 /** A URL to re-request this resource. */ |
1371 core.String selfLink; | 1371 core.String selfLink; |
1372 | 1372 |
1373 | 1373 |
1374 Output(); | 1374 Output(); |
1375 | 1375 |
1376 Output.fromJson(core.Map _json) { | 1376 Output.fromJson(core.Map _json) { |
1377 if (_json.containsKey("id")) { | 1377 if (_json.containsKey("id")) { |
1378 id = _json["id"]; | 1378 id = _json["id"]; |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1450 _json["csvInstance"] = csvInstance; | 1450 _json["csvInstance"] = csvInstance; |
1451 } | 1451 } |
1452 if (output != null) { | 1452 if (output != null) { |
1453 _json["output"] = output; | 1453 _json["output"] = output; |
1454 } | 1454 } |
1455 return _json; | 1455 return _json; |
1456 } | 1456 } |
1457 } | 1457 } |
1458 | 1458 |
1459 | 1459 |
OLD | NEW |