| 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;
|
| }
|
|
|