| 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.genomics.v1; | 3 library googleapis.genomics.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 6275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6286 } | 6286 } |
| 6287 return _json; | 6287 return _json; |
| 6288 } | 6288 } |
| 6289 } | 6289 } |
| 6290 | 6290 |
| 6291 /** The variant search request. */ | 6291 /** The variant search request. */ |
| 6292 class SearchVariantsRequest { | 6292 class SearchVariantsRequest { |
| 6293 /** | 6293 /** |
| 6294 * Only return variant calls which belong to call sets with these ids. Leaving | 6294 * Only return variant calls which belong to call sets with these ids. Leaving |
| 6295 * this blank returns all variant calls. If a variant has no calls belonging | 6295 * this blank returns all variant calls. If a variant has no calls belonging |
| 6296 * to any of these call sets, it won't be returned at all. Currently, variants | 6296 * to any of these call sets, it won't be returned at all. |
| 6297 * with no calls from any call set will never be returned. | |
| 6298 */ | 6297 */ |
| 6299 core.List<core.String> callSetIds; | 6298 core.List<core.String> callSetIds; |
| 6300 /** | 6299 /** |
| 6301 * The end of the window, 0-based exclusive. If unspecified or 0, defaults to | 6300 * The end of the window, 0-based exclusive. If unspecified or 0, defaults to |
| 6302 * the length of the reference. | 6301 * the length of the reference. |
| 6303 */ | 6302 */ |
| 6304 core.String end; | 6303 core.String end; |
| 6305 /** | 6304 /** |
| 6306 * The maximum number of calls to return in a single page. Note that this | 6305 * The maximum number of calls to return in a single page. Note that this |
| 6307 * limit may be exceeded in the event that a matching variant contains more | 6306 * limit may be exceeded in the event that a matching variant contains more |
| (...skipping 1130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7438 } | 7437 } |
| 7439 if (type != null) { | 7438 if (type != null) { |
| 7440 _json["type"] = type; | 7439 _json["type"] = type; |
| 7441 } | 7440 } |
| 7442 if (value != null) { | 7441 if (value != null) { |
| 7443 _json["value"] = value; | 7442 _json["value"] = value; |
| 7444 } | 7443 } |
| 7445 return _json; | 7444 return _json; |
| 7446 } | 7445 } |
| 7447 } | 7446 } |
| OLD | NEW |