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

Unified Diff: generated/googleapis/lib/analytics/v3.dart

Issue 663113002: Api roll 4: 2014-10-20 (Closed) Base URL: git@github.com:dart-lang/googleapis.git@master
Patch Set: Created 6 years, 2 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/directory_v1.dart ('k') | generated/googleapis/lib/gmail/v1.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: generated/googleapis/lib/analytics/v3.dart
diff --git a/generated/googleapis/lib/analytics/v3.dart b/generated/googleapis/lib/analytics/v3.dart
index 7fcd246c39e0b18403ebe111bb40edfede0e2568..ce44a1be6878f02fcecca2200bc9d906537da0a4 100644
--- a/generated/googleapis/lib/analytics/v3.dart
+++ b/generated/googleapis/lib/analytics/v3.dart
@@ -449,7 +449,8 @@ class ManagementAccountSummariesResourceApi {
*
* Request parameters:
*
- * [max_results] - The maximum number of filters to include in this response.
+ * [max_results] - The maximum number of account summaries to include in this
+ * response, where the largest acceptable value is 1000.
*
* [start_index] - An index of the first entity to retrieve. Use this
* parameter as a pagination mechanism along with the max-results parameter.
@@ -9381,6 +9382,12 @@ class Profile {
*/
core.bool eCommerceTracking;
+ /**
+ * Indicates whether enhanced ecommerce tracking is enabled for this view
+ * (profile).
+ */
+ core.bool enhancedECommerceTracking;
+
/** The query parameters that are excluded from this view (profile). */
core.String excludeQueryParameters;
@@ -9469,6 +9476,9 @@ class Profile {
if (_json.containsKey("eCommerceTracking")) {
eCommerceTracking = _json["eCommerceTracking"];
}
+ if (_json.containsKey("enhancedECommerceTracking")) {
+ enhancedECommerceTracking = _json["enhancedECommerceTracking"];
+ }
if (_json.containsKey("excludeQueryParameters")) {
excludeQueryParameters = _json["excludeQueryParameters"];
}
@@ -9542,6 +9552,9 @@ class Profile {
if (eCommerceTracking != null) {
_json["eCommerceTracking"] = eCommerceTracking;
}
+ if (enhancedECommerceTracking != null) {
+ _json["enhancedECommerceTracking"] = enhancedECommerceTracking;
+ }
if (excludeQueryParameters != null) {
_json["excludeQueryParameters"] = excludeQueryParameters;
}
« no previous file with comments | « generated/googleapis/lib/admin/directory_v1.dart ('k') | generated/googleapis/lib/gmail/v1.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698