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

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

Issue 2987103002: Api-Roll 52: 2017-07-31 (Closed)
Patch Set: Created 3 years, 4 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.datastore.v1; 3 library googleapis.datastore.v1;
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 1555 matching lines...) Expand 10 before | Expand all | Expand 10 after
1566 * The state of the query after the current batch. 1566 * The state of the query after the current batch.
1567 * Possible string values are: 1567 * Possible string values are:
1568 * - "MORE_RESULTS_TYPE_UNSPECIFIED" : Unspecified. This value is never used. 1568 * - "MORE_RESULTS_TYPE_UNSPECIFIED" : Unspecified. This value is never used.
1569 * - "NOT_FINISHED" : There may be additional batches to fetch from this 1569 * - "NOT_FINISHED" : There may be additional batches to fetch from this
1570 * query. 1570 * query.
1571 * - "MORE_RESULTS_AFTER_LIMIT" : The query is finished, but there may be more 1571 * - "MORE_RESULTS_AFTER_LIMIT" : The query is finished, but there may be more
1572 * results after the limit. 1572 * results after the limit.
1573 * - "MORE_RESULTS_AFTER_CURSOR" : The query is finished, but there may be 1573 * - "MORE_RESULTS_AFTER_CURSOR" : The query is finished, but there may be
1574 * more results after the end 1574 * more results after the end
1575 * cursor. 1575 * cursor.
1576 * - "NO_MORE_RESULTS" : The query has been exhausted. 1576 * - "NO_MORE_RESULTS" : The query is finished, and there are no more results.
1577 */ 1577 */
1578 core.String moreResults; 1578 core.String moreResults;
1579 /** 1579 /**
1580 * A cursor that points to the position after the last skipped result. 1580 * A cursor that points to the position after the last skipped result.
1581 * Will be set when `skipped_results` != 0. 1581 * Will be set when `skipped_results` != 0.
1582 */ 1582 */
1583 core.String skippedCursor; 1583 core.String skippedCursor;
1584 core.List<core.int> get skippedCursorAsBytes { 1584 core.List<core.int> get skippedCursorAsBytes {
1585 return convert.BASE64.decode(skippedCursor); 1585 return convert.BASE64.decode(skippedCursor);
1586 } 1586 }
(...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after
1989 } 1989 }
1990 if (stringValue != null) { 1990 if (stringValue != null) {
1991 _json["stringValue"] = stringValue; 1991 _json["stringValue"] = stringValue;
1992 } 1992 }
1993 if (timestampValue != null) { 1993 if (timestampValue != null) {
1994 _json["timestampValue"] = timestampValue; 1994 _json["timestampValue"] = timestampValue;
1995 } 1995 }
1996 return _json; 1996 return _json;
1997 } 1997 }
1998 } 1998 }
OLDNEW
« no previous file with comments | « generated/googleapis/lib/dataproc/v1beta2.dart ('k') | generated/googleapis/lib/firebaserules/v1.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698