| 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.webmasters.v3; | 3 library googleapis.webmasters.v3; |
| 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 25 matching lines...) Expand all Loading... |
| 36 } | 36 } |
| 37 | 37 |
| 38 | 38 |
| 39 class SearchanalyticsResourceApi { | 39 class SearchanalyticsResourceApi { |
| 40 final commons.ApiRequester _requester; | 40 final commons.ApiRequester _requester; |
| 41 | 41 |
| 42 SearchanalyticsResourceApi(commons.ApiRequester client) : | 42 SearchanalyticsResourceApi(commons.ApiRequester client) : |
| 43 _requester = client; | 43 _requester = client; |
| 44 | 44 |
| 45 /** | 45 /** |
| 46 * [LIMITED ACCESS] | |
| 47 * | |
| 48 * Query your data with filters and parameters that you define. Returns zero | 46 * Query your data with filters and parameters that you define. Returns zero |
| 49 * or more rows grouped by the row keys that you define. You must define a | 47 * or more rows grouped by the row keys that you define. You must define a |
| 50 * date range of one or more days. | 48 * date range of one or more days. |
| 51 * | 49 * |
| 52 * When date is one of the group by values, any days without data are omitted | 50 * When date is one of the group by values, any days without data are omitted |
| 53 * from the result list. If you need to know which days have data, issue a | 51 * from the result list. If you need to know which days have data, issue a |
| 54 * broad date range query grouped by date for any metric, and see which day | 52 * broad date range query grouped by date for any metric, and see which day |
| 55 * rows are returned. | 53 * rows are returned. |
| 56 * | 54 * |
| 57 * [request] - The metadata request object. | 55 * [request] - The metadata request object. |
| (...skipping 1378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1436 } | 1434 } |
| 1437 if (submitted != null) { | 1435 if (submitted != null) { |
| 1438 _json["submitted"] = submitted; | 1436 _json["submitted"] = submitted; |
| 1439 } | 1437 } |
| 1440 if (type != null) { | 1438 if (type != null) { |
| 1441 _json["type"] = type; | 1439 _json["type"] = type; |
| 1442 } | 1440 } |
| 1443 return _json; | 1441 return _json; |
| 1444 } | 1442 } |
| 1445 } | 1443 } |
| OLD | NEW |