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

Side by Side Diff: generated/googleapis_beta/lib/toolresults/v1beta3.dart

Issue 2159673002: Api-roll 39: 2016-07-18 (Closed) Base URL: git@github.com:dart-lang/googleapis.git@master
Patch Set: Created 4 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_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
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
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 }
OLDNEW
« no previous file with comments | « generated/googleapis_beta/lib/sqladmin/v1beta4.dart ('k') | generated/googleapis_beta/pubspec.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698