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