| OLD | NEW |
| 1 // This is a generated file (see the discoveryapis_generator project). | 1 // This is a generated file (see the discoveryapis_generator project). |
| 2 | 2 |
| 3 library googleapis.analytics.v3; | 3 library googleapis.analytics.v3; |
| 4 | 4 |
| 5 import 'dart:core' as core; | 5 import 'dart:core' as core; |
| 6 import 'dart:async' as async; | 6 import 'dart:async' as async; |
| 7 import 'dart:convert' as convert; | 7 import 'dart:convert' as convert; |
| 8 | 8 |
| 9 import 'package:_discoveryapis_commons/_discoveryapis_commons.dart' as commons; | 9 import 'package:_discoveryapis_commons/_discoveryapis_commons.dart' as commons; |
| 10 import 'package:http/http.dart' as http; | 10 import 'package:http/http.dart' as http; |
| (...skipping 9288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 9299 core.String kind; | 9299 core.String kind; |
| 9300 /** | 9300 /** |
| 9301 * The foreign account ID. For example the an AdWords `linkedAccountId` has | 9301 * The foreign account ID. For example the an AdWords `linkedAccountId` has |
| 9302 * the following format XXX-XXX-XXXX. | 9302 * the following format XXX-XXX-XXXX. |
| 9303 */ | 9303 */ |
| 9304 core.String linkedAccountId; | 9304 core.String linkedAccountId; |
| 9305 /** Remarketing audience ID to which this linked foreign account belongs. */ | 9305 /** Remarketing audience ID to which this linked foreign account belongs. */ |
| 9306 core.String remarketingAudienceId; | 9306 core.String remarketingAudienceId; |
| 9307 /** The status of this foreign account link. */ | 9307 /** The status of this foreign account link. */ |
| 9308 core.String status; | 9308 core.String status; |
| 9309 /** The type of the foreign account. For example `ADWORDS_LINKS`. */ | 9309 /** |
| 9310 * The type of the foreign account. For example, `ADWORDS_LINKS`, `DBM_LINKS`, |
| 9311 * `MCC_LINKS` or `OPTIMIZE`. |
| 9312 */ |
| 9310 core.String type; | 9313 core.String type; |
| 9311 /** | 9314 /** |
| 9312 * Web property ID of the form UA-XXXXX-YY to which this linked foreign | 9315 * Web property ID of the form UA-XXXXX-YY to which this linked foreign |
| 9313 * account belongs. | 9316 * account belongs. |
| 9314 */ | 9317 */ |
| 9315 core.String webPropertyId; | 9318 core.String webPropertyId; |
| 9316 | 9319 |
| 9317 LinkedForeignAccount(); | 9320 LinkedForeignAccount(); |
| 9318 | 9321 |
| 9319 LinkedForeignAccount.fromJson(core.Map _json) { | 9322 LinkedForeignAccount.fromJson(core.Map _json) { |
| (...skipping 2995 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 12315 } | 12318 } |
| 12316 if (updated != null) { | 12319 if (updated != null) { |
| 12317 _json["updated"] = (updated).toIso8601String(); | 12320 _json["updated"] = (updated).toIso8601String(); |
| 12318 } | 12321 } |
| 12319 if (websiteUrl != null) { | 12322 if (websiteUrl != null) { |
| 12320 _json["websiteUrl"] = websiteUrl; | 12323 _json["websiteUrl"] = websiteUrl; |
| 12321 } | 12324 } |
| 12322 return _json; | 12325 return _json; |
| 12323 } | 12326 } |
| 12324 } | 12327 } |
| OLD | NEW |