| 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.genomics.v1beta2; | 3 library googleapis_beta.genomics.v1beta2; |
| 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 6244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6255 } | 6255 } |
| 6256 return _json; | 6256 return _json; |
| 6257 } | 6257 } |
| 6258 } | 6258 } |
| 6259 | 6259 |
| 6260 /** The variant search request. */ | 6260 /** The variant search request. */ |
| 6261 class SearchVariantsRequest { | 6261 class SearchVariantsRequest { |
| 6262 /** | 6262 /** |
| 6263 * Only return variant calls which belong to call sets with these ids. Leaving | 6263 * Only return variant calls which belong to call sets with these ids. Leaving |
| 6264 * this blank returns all variant calls. If a variant has no calls belonging | 6264 * this blank returns all variant calls. If a variant has no calls belonging |
| 6265 * to any of these call sets, it won't be returned at all. Currently, variants | 6265 * to any of these call sets, it won't be returned at all. |
| 6266 * with no calls from any call set will never be returned. | |
| 6267 */ | 6266 */ |
| 6268 core.List<core.String> callSetIds; | 6267 core.List<core.String> callSetIds; |
| 6269 /** | 6268 /** |
| 6270 * The end of the window, 0-based exclusive. If unspecified or 0, defaults to | 6269 * The end of the window, 0-based exclusive. If unspecified or 0, defaults to |
| 6271 * the length of the reference. | 6270 * the length of the reference. |
| 6272 */ | 6271 */ |
| 6273 core.String end; | 6272 core.String end; |
| 6274 /** | 6273 /** |
| 6275 * The maximum number of calls to return in a single page. Note that this | 6274 * The maximum number of calls to return in a single page. Note that this |
| 6276 * limit may be exceeded in the event that a matching variant contains more | 6275 * limit may be exceeded in the event that a matching variant contains more |
| (...skipping 689 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6966 } | 6965 } |
| 6967 if (referenceBounds != null) { | 6966 if (referenceBounds != null) { |
| 6968 _json["referenceBounds"] = referenceBounds.map((value) => (value).toJson()
).toList(); | 6967 _json["referenceBounds"] = referenceBounds.map((value) => (value).toJson()
).toList(); |
| 6969 } | 6968 } |
| 6970 if (referenceSetId != null) { | 6969 if (referenceSetId != null) { |
| 6971 _json["referenceSetId"] = referenceSetId; | 6970 _json["referenceSetId"] = referenceSetId; |
| 6972 } | 6971 } |
| 6973 return _json; | 6972 return _json; |
| 6974 } | 6973 } |
| 6975 } | 6974 } |
| OLD | NEW |