| OLD | NEW |
| 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_beta.toolresults.v1beta3; | 3 library googleapis_beta.toolresults.v1beta3; |
| 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 2901 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2912 */ | 2912 */ |
| 2913 class Timestamp { | 2913 class Timestamp { |
| 2914 /** | 2914 /** |
| 2915 * Non-negative fractions of a second at nanosecond resolution. Negative | 2915 * Non-negative fractions of a second at nanosecond resolution. Negative |
| 2916 * second values with fractions must still have non-negative nanos values that | 2916 * second values with fractions must still have non-negative nanos values that |
| 2917 * count forward in time. Must be from 0 to 999,999,999 inclusive. | 2917 * count forward in time. Must be from 0 to 999,999,999 inclusive. |
| 2918 */ | 2918 */ |
| 2919 core.int nanos; | 2919 core.int nanos; |
| 2920 /** | 2920 /** |
| 2921 * Represents seconds of UTC time since Unix epoch 1970-01-01T00:00:00Z. Must | 2921 * Represents seconds of UTC time since Unix epoch 1970-01-01T00:00:00Z. Must |
| 2922 * be from from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59Z inclusive. | 2922 * be from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59Z inclusive. |
| 2923 */ | 2923 */ |
| 2924 core.String seconds; | 2924 core.String seconds; |
| 2925 | 2925 |
| 2926 Timestamp(); | 2926 Timestamp(); |
| 2927 | 2927 |
| 2928 Timestamp.fromJson(core.Map _json) { | 2928 Timestamp.fromJson(core.Map _json) { |
| 2929 if (_json.containsKey("nanos")) { | 2929 if (_json.containsKey("nanos")) { |
| 2930 nanos = _json["nanos"]; | 2930 nanos = _json["nanos"]; |
| 2931 } | 2931 } |
| 2932 if (_json.containsKey("seconds")) { | 2932 if (_json.containsKey("seconds")) { |
| (...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3127 } | 3127 } |
| 3128 if (output != null) { | 3128 if (output != null) { |
| 3129 _json["output"] = (output).toJson(); | 3129 _json["output"] = (output).toJson(); |
| 3130 } | 3130 } |
| 3131 if (testCase != null) { | 3131 if (testCase != null) { |
| 3132 _json["testCase"] = (testCase).toJson(); | 3132 _json["testCase"] = (testCase).toJson(); |
| 3133 } | 3133 } |
| 3134 return _json; | 3134 return _json; |
| 3135 } | 3135 } |
| 3136 } | 3136 } |
| OLD | NEW |