| Index: generated/googleapis/lib/analytics/v3.dart
|
| diff --git a/generated/googleapis/lib/analytics/v3.dart b/generated/googleapis/lib/analytics/v3.dart
|
| index ee44fc69153d68aef69aa06ef22dec833b34e365..b6b7b82b8d603625bd691141536b5333bde35540 100644
|
| --- a/generated/googleapis/lib/analytics/v3.dart
|
| +++ b/generated/googleapis/lib/analytics/v3.dart
|
| @@ -16,7 +16,7 @@ export 'package:_discoveryapis_commons/_discoveryapis_commons.dart' show
|
|
|
| const core.String USER_AGENT = 'dart-api-client analytics/v3';
|
|
|
| -/** View and manage your Google Analytics data */
|
| +/** Views and manages your Google Analytics data. */
|
| class AnalyticsApi {
|
| /** View and manage your Google Analytics data */
|
| static const AnalyticsScope = "https://www.googleapis.com/auth/analytics";
|
| @@ -2213,7 +2213,7 @@ class ManagementGoalsResourceApi {
|
| }
|
|
|
| /**
|
| - * Updates an existing view (profile). This method supports patch semantics.
|
| + * Updates an existing goal. This method supports patch semantics.
|
| *
|
| * [request] - The metadata request object.
|
| *
|
| @@ -2272,7 +2272,7 @@ class ManagementGoalsResourceApi {
|
| }
|
|
|
| /**
|
| - * Updates an existing view (profile).
|
| + * Updates an existing goal.
|
| *
|
| * [request] - The metadata request object.
|
| *
|
| @@ -3010,13 +3010,13 @@ class ManagementProfilesResourceApi {
|
| *
|
| * Request parameters:
|
| *
|
| - * [accountId] - Account ID to retrieve the goal for.
|
| + * [accountId] - Account ID to retrieve the view (profile) for.
|
| * Value must have pattern "[0-9]+".
|
| *
|
| - * [webPropertyId] - Web property ID to retrieve the goal for.
|
| + * [webPropertyId] - Web property ID to retrieve the view (profile) for.
|
| * Value must have pattern "UA-[0-9]+-[0-9]+".
|
| *
|
| - * [profileId] - View (Profile) ID to retrieve the goal for.
|
| + * [profileId] - View (Profile) ID to retrieve the view (profile) for.
|
| * Value must have pattern "[0-9]+".
|
| *
|
| * Completes with a [Profile].
|
| @@ -4802,6 +4802,8 @@ class Account {
|
| AccountPermissions permissions;
|
| /** Link for this account. */
|
| core.String selfLink;
|
| + /** Indicates whether this account is starred or not. */
|
| + core.bool starred;
|
| /** Time the account was last modified. */
|
| core.DateTime updated;
|
|
|
| @@ -4829,6 +4831,9 @@ class Account {
|
| if (_json.containsKey("selfLink")) {
|
| selfLink = _json["selfLink"];
|
| }
|
| + if (_json.containsKey("starred")) {
|
| + starred = _json["starred"];
|
| + }
|
| if (_json.containsKey("updated")) {
|
| updated = core.DateTime.parse(_json["updated"]);
|
| }
|
| @@ -4857,6 +4862,9 @@ class Account {
|
| if (selfLink != null) {
|
| _json["selfLink"] = selfLink;
|
| }
|
| + if (starred != null) {
|
| + _json["starred"] = starred;
|
| + }
|
| if (updated != null) {
|
| _json["updated"] = (updated).toIso8601String();
|
| }
|
| @@ -5014,6 +5022,8 @@ class AccountSummary {
|
| core.String kind;
|
| /** Account name. */
|
| core.String name;
|
| + /** Indicates whether this account is starred or not. */
|
| + core.bool starred;
|
| /** List of web properties under this account. */
|
| core.List<WebPropertySummary> webProperties;
|
|
|
| @@ -5029,6 +5039,9 @@ class AccountSummary {
|
| if (_json.containsKey("name")) {
|
| name = _json["name"];
|
| }
|
| + if (_json.containsKey("starred")) {
|
| + starred = _json["starred"];
|
| + }
|
| if (_json.containsKey("webProperties")) {
|
| webProperties = _json["webProperties"].map((value) => new WebPropertySummary.fromJson(value)).toList();
|
| }
|
| @@ -5045,6 +5058,9 @@ class AccountSummary {
|
| if (name != null) {
|
| _json["name"] = name;
|
| }
|
| + if (starred != null) {
|
| + _json["starred"] = starred;
|
| + }
|
| if (webProperties != null) {
|
| _json["webProperties"] = webProperties.map((value) => (value).toJson()).toList();
|
| }
|
| @@ -9440,6 +9456,8 @@ class Profile {
|
| core.String siteSearchCategoryParameters;
|
| /** The site search query parameters for this view (profile). */
|
| core.String siteSearchQueryParameters;
|
| + /** Indicates whether this view (profile) is starred or not. */
|
| + core.bool starred;
|
| /**
|
| * Whether or not Analytics will strip search category parameters from the
|
| * URLs in your reports.
|
| @@ -9524,6 +9542,9 @@ class Profile {
|
| if (_json.containsKey("siteSearchQueryParameters")) {
|
| siteSearchQueryParameters = _json["siteSearchQueryParameters"];
|
| }
|
| + if (_json.containsKey("starred")) {
|
| + starred = _json["starred"];
|
| + }
|
| if (_json.containsKey("stripSiteSearchCategoryParameters")) {
|
| stripSiteSearchCategoryParameters = _json["stripSiteSearchCategoryParameters"];
|
| }
|
| @@ -9603,6 +9624,9 @@ class Profile {
|
| if (siteSearchQueryParameters != null) {
|
| _json["siteSearchQueryParameters"] = siteSearchQueryParameters;
|
| }
|
| + if (starred != null) {
|
| + _json["starred"] = starred;
|
| + }
|
| if (stripSiteSearchCategoryParameters != null) {
|
| _json["stripSiteSearchCategoryParameters"] = stripSiteSearchCategoryParameters;
|
| }
|
| @@ -9879,6 +9903,8 @@ class ProfileSummary {
|
| core.String kind;
|
| /** View (profile) name. */
|
| core.String name;
|
| + /** Indicates whether this view (profile) is starred or not. */
|
| + core.bool starred;
|
| /** View (Profile) type. Supported types: WEB or APP. */
|
| core.String type;
|
|
|
| @@ -9894,6 +9920,9 @@ class ProfileSummary {
|
| if (_json.containsKey("name")) {
|
| name = _json["name"];
|
| }
|
| + if (_json.containsKey("starred")) {
|
| + starred = _json["starred"];
|
| + }
|
| if (_json.containsKey("type")) {
|
| type = _json["type"];
|
| }
|
| @@ -9910,6 +9939,9 @@ class ProfileSummary {
|
| if (name != null) {
|
| _json["name"] = name;
|
| }
|
| + if (starred != null) {
|
| + _json["starred"] = starred;
|
| + }
|
| if (type != null) {
|
| _json["type"] = type;
|
| }
|
| @@ -11045,6 +11077,8 @@ class WebPropertySummary {
|
| core.String name;
|
| /** List of profiles under this web property. */
|
| core.List<ProfileSummary> profiles;
|
| + /** Indicates whether this web property is starred or not. */
|
| + core.bool starred;
|
| /** Website url for this web property. */
|
| core.String websiteUrl;
|
|
|
| @@ -11069,6 +11103,9 @@ class WebPropertySummary {
|
| if (_json.containsKey("profiles")) {
|
| profiles = _json["profiles"].map((value) => new ProfileSummary.fromJson(value)).toList();
|
| }
|
| + if (_json.containsKey("starred")) {
|
| + starred = _json["starred"];
|
| + }
|
| if (_json.containsKey("websiteUrl")) {
|
| websiteUrl = _json["websiteUrl"];
|
| }
|
| @@ -11094,6 +11131,9 @@ class WebPropertySummary {
|
| if (profiles != null) {
|
| _json["profiles"] = profiles.map((value) => (value).toJson()).toList();
|
| }
|
| + if (starred != null) {
|
| + _json["starred"] = starred;
|
| + }
|
| if (websiteUrl != null) {
|
| _json["websiteUrl"] = websiteUrl;
|
| }
|
| @@ -11322,6 +11362,8 @@ class Webproperty {
|
| core.int profileCount;
|
| /** Link for this web property. */
|
| core.String selfLink;
|
| + /** Indicates whether this web property is starred or not. */
|
| + core.bool starred;
|
| /** Time this web property was last modified. */
|
| core.DateTime updated;
|
| /** Website url for this web property. */
|
| @@ -11372,6 +11414,9 @@ class Webproperty {
|
| if (_json.containsKey("selfLink")) {
|
| selfLink = _json["selfLink"];
|
| }
|
| + if (_json.containsKey("starred")) {
|
| + starred = _json["starred"];
|
| + }
|
| if (_json.containsKey("updated")) {
|
| updated = core.DateTime.parse(_json["updated"]);
|
| }
|
| @@ -11424,6 +11469,9 @@ class Webproperty {
|
| if (selfLink != null) {
|
| _json["selfLink"] = selfLink;
|
| }
|
| + if (starred != null) {
|
| + _json["starred"] = starred;
|
| + }
|
| if (updated != null) {
|
| _json["updated"] = (updated).toIso8601String();
|
| }
|
|
|