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

Unified Diff: generated/googleapis/lib/youtubeanalytics/v1.dart

Issue 2695743002: Api-roll 45: 2017-02-13 (Closed)
Patch Set: reverted local changes to pubspec file Created 3 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « generated/googleapis/lib/youtube/v3.dart ('k') | generated/googleapis/lib/youtubereporting/v1.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: generated/googleapis/lib/youtubeanalytics/v1.dart
diff --git a/generated/googleapis/lib/youtubeanalytics/v1.dart b/generated/googleapis/lib/youtubeanalytics/v1.dart
index 864248bb4bf06be3edcd59ea6ed7e38aa295f4dc..29fabe54c1143fa1a351b59d036213407cb0ac15 100644
--- a/generated/googleapis/lib/youtubeanalytics/v1.dart
+++ b/generated/googleapis/lib/youtubeanalytics/v1.dart
@@ -529,6 +529,10 @@ class ReportsResourceApi {
* video==dMH0bHeiRNg;country==IT restricts the result set to include data for
* the given video in Italy.
*
+ * [include_historical_channel_data] - If set to true historical data (i.e.
+ * channel data from before the linking of the channel to the content owner)
+ * will be retrieved.
+ *
* [max_results] - The maximum number of rows to include in the response.
*
* [sort] - A comma-separated list of dimensions or metrics that determine the
@@ -548,7 +552,7 @@ class ReportsResourceApi {
* If the used [http.Client] completes with an error when making a REST call,
* this method will complete with the same error.
*/
- async.Future<ResultTable> query(core.String ids, core.String start_date, core.String end_date, core.String metrics, {core.String currency, core.String dimensions, core.String filters, core.int max_results, core.String sort, core.int start_index}) {
+ async.Future<ResultTable> query(core.String ids, core.String start_date, core.String end_date, core.String metrics, {core.String currency, core.String dimensions, core.String filters, core.bool include_historical_channel_data, core.int max_results, core.String sort, core.int start_index}) {
var _url = null;
var _queryParams = new core.Map();
var _uploadMedia = null;
@@ -581,6 +585,9 @@ class ReportsResourceApi {
if (filters != null) {
_queryParams["filters"] = [filters];
}
+ if (include_historical_channel_data != null) {
+ _queryParams["include-historical-channel-data"] = ["${include_historical_channel_data}"];
+ }
if (max_results != null) {
_queryParams["max-results"] = ["${max_results}"];
}
« no previous file with comments | « generated/googleapis/lib/youtube/v3.dart ('k') | generated/googleapis/lib/youtubereporting/v1.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698