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

Unified Diff: generated/googleapis/lib/admin/reports_v1.dart

Issue 595873002: Api roll 1: 2014-09-23 (Closed) Base URL: git@github.com:dart-lang/googleapis.git@master
Patch Set: Created 6 years, 3 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/admin/email_migration_v2.dart ('k') | generated/googleapis/lib/adsense/v1_4.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: generated/googleapis/lib/admin/reports_v1.dart
diff --git a/generated/googleapis/lib/admin/reports_v1.dart b/generated/googleapis/lib/admin/reports_v1.dart
index c3435d0c38642953a945e5cc3d9990c63b688030..8814ae1e5b8fdf310e71c0d61524c42348351ed7 100644
--- a/generated/googleapis/lib/admin/reports_v1.dart
+++ b/generated/googleapis/lib/admin/reports_v1.dart
@@ -33,7 +33,7 @@ class AdminApi {
UserUsageReportResourceApi get userUsageReport => new UserUsageReportResourceApi(_requester);
AdminApi(http.Client client) :
- _requester = new common_internal.ApiRequester(client, "https://www.googleapis.com/", "/admin/reports/v1/");
+ _requester = new common_internal.ApiRequester(client, "https://www.googleapis.com/", "admin/reports/v1/");
}
@@ -573,6 +573,12 @@ class ActivityEventsParameters {
/** Integral value of the parameter. */
core.String intValue;
+ /** Multi-int value of the parameter. */
+ core.List<core.String> multiIntValue;
+
+ /** Multi-string value of the parameter. */
+ core.List<core.String> multiValue;
+
/** The name of the parameter. */
core.String name;
@@ -589,6 +595,12 @@ class ActivityEventsParameters {
if (_json.containsKey("intValue")) {
intValue = _json["intValue"];
}
+ if (_json.containsKey("multiIntValue")) {
+ multiIntValue = _json["multiIntValue"];
+ }
+ if (_json.containsKey("multiValue")) {
+ multiValue = _json["multiValue"];
+ }
if (_json.containsKey("name")) {
name = _json["name"];
}
@@ -605,6 +617,12 @@ class ActivityEventsParameters {
if (intValue != null) {
_json["intValue"] = intValue;
}
+ if (multiIntValue != null) {
+ _json["multiIntValue"] = multiIntValue;
+ }
+ if (multiValue != null) {
+ _json["multiValue"] = multiValue;
+ }
if (name != null) {
_json["name"] = name;
}
« no previous file with comments | « generated/googleapis/lib/admin/email_migration_v2.dart ('k') | generated/googleapis/lib/adsense/v1_4.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698