| OLD | NEW |
| 1 library googleapis.analytics.v3; | 1 library googleapis.analytics.v3; |
| 2 | 2 |
| 3 import "dart:core" as core; | 3 import "dart:core" as core; |
| 4 import "dart:collection" as collection; | 4 import "dart:collection" as collection; |
| 5 import "dart:async" as async; | 5 import "dart:async" as async; |
| 6 import "dart:convert" as convert; | 6 import "dart:convert" as convert; |
| 7 | 7 |
| 8 import "package:crypto/crypto.dart" as crypto; | 8 import "package:crypto/crypto.dart" as crypto; |
| 9 import 'package:http/http.dart' as http; | 9 import 'package:http/http.dart' as http; |
| 10 import '../src/common_internal.dart' as common_internal; | 10 import '../src/common_internal.dart' as common_internal; |
| (...skipping 7383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7394 * - APP_INSTALLER_ID, | 7394 * - APP_INSTALLER_ID, |
| 7395 * - APP_NAME, | 7395 * - APP_NAME, |
| 7396 * - APP_VERSION, | 7396 * - APP_VERSION, |
| 7397 * - SCREEN, | 7397 * - SCREEN, |
| 7398 * - IS_APP, | 7398 * - IS_APP, |
| 7399 * - IS_FATAL_EXCEPTION, | 7399 * - IS_FATAL_EXCEPTION, |
| 7400 * - EXCEPTION_DESCRIPTION, | 7400 * - EXCEPTION_DESCRIPTION, |
| 7401 * - Mobile device | 7401 * - Mobile device |
| 7402 * - IS_MOBILE, | 7402 * - IS_MOBILE, |
| 7403 * - IS_TABLET, | 7403 * - IS_TABLET, |
| 7404 * - DEVICE_CATEGORY, |
| 7404 * - MOBILE_HAS_QWERTY_KEYBOARD, | 7405 * - MOBILE_HAS_QWERTY_KEYBOARD, |
| 7405 * - MOBILE_HAS_NFC_SUPPORT, | 7406 * - MOBILE_HAS_NFC_SUPPORT, |
| 7406 * - MOBILE_HAS_CELLULAR_RADIO, | 7407 * - MOBILE_HAS_CELLULAR_RADIO, |
| 7407 * - MOBILE_HAS_WIFI_SUPPORT, | 7408 * - MOBILE_HAS_WIFI_SUPPORT, |
| 7408 * - MOBILE_BRAND_NAME, | 7409 * - MOBILE_BRAND_NAME, |
| 7409 * - MOBILE_MODEL_NAME, | 7410 * - MOBILE_MODEL_NAME, |
| 7410 * - MOBILE_MARKETING_NAME, | 7411 * - MOBILE_MARKETING_NAME, |
| 7411 * - MOBILE_POINTING_METHOD, | 7412 * - MOBILE_POINTING_METHOD, |
| 7412 * - Social | 7413 * - Social |
| 7413 * - SOCIAL_NETWORK, | 7414 * - SOCIAL_NETWORK, |
| (...skipping 1963 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 9377 /** Default page for this view (profile). */ | 9378 /** Default page for this view (profile). */ |
| 9378 core.String defaultPage; | 9379 core.String defaultPage; |
| 9379 | 9380 |
| 9380 /** | 9381 /** |
| 9381 * Indicates whether ecommerce tracking is enabled for this view (profile). | 9382 * Indicates whether ecommerce tracking is enabled for this view (profile). |
| 9382 */ | 9383 */ |
| 9383 core.bool eCommerceTracking; | 9384 core.bool eCommerceTracking; |
| 9384 | 9385 |
| 9385 /** | 9386 /** |
| 9386 * Indicates whether enhanced ecommerce tracking is enabled for this view | 9387 * Indicates whether enhanced ecommerce tracking is enabled for this view |
| 9387 * (profile). | 9388 * (profile). This property can only be enabled if ecommerce tracking is |
| 9389 * enabled. |
| 9388 */ | 9390 */ |
| 9389 core.bool enhancedECommerceTracking; | 9391 core.bool enhancedECommerceTracking; |
| 9390 | 9392 |
| 9391 /** The query parameters that are excluded from this view (profile). */ | 9393 /** The query parameters that are excluded from this view (profile). */ |
| 9392 core.String excludeQueryParameters; | 9394 core.String excludeQueryParameters; |
| 9393 | 9395 |
| 9394 /** View (Profile) ID. */ | 9396 /** View (Profile) ID. */ |
| 9395 core.String id; | 9397 core.String id; |
| 9396 | 9398 |
| 9397 /** Internal ID for the web property to which this view (profile) belongs. */ | 9399 /** Internal ID for the web property to which this view (profile) belongs. */ |
| (...skipping 2201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 11599 _json["updated"] = (updated).toIso8601String(); | 11601 _json["updated"] = (updated).toIso8601String(); |
| 11600 } | 11602 } |
| 11601 if (websiteUrl != null) { | 11603 if (websiteUrl != null) { |
| 11602 _json["websiteUrl"] = websiteUrl; | 11604 _json["websiteUrl"] = websiteUrl; |
| 11603 } | 11605 } |
| 11604 return _json; | 11606 return _json; |
| 11605 } | 11607 } |
| 11606 } | 11608 } |
| 11607 | 11609 |
| 11608 | 11610 |
| OLD | NEW |