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

Unified Diff: generated/googleapis/lib/firebasedynamiclinks/v1.dart

Issue 2571553005: Api-roll 43: 2016-12-13 (Closed)
Patch Set: Created 4 years 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/drive/v3.dart ('k') | generated/googleapis/lib/fitness/v1.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: generated/googleapis/lib/firebasedynamiclinks/v1.dart
diff --git a/generated/googleapis/lib/firebasedynamiclinks/v1.dart b/generated/googleapis/lib/firebasedynamiclinks/v1.dart
index 9d376bb4188fe7775868575709514f36132af214..5af23a9817fed3510800301ad8b94ff2222cda6f 100644
--- a/generated/googleapis/lib/firebasedynamiclinks/v1.dart
+++ b/generated/googleapis/lib/firebasedynamiclinks/v1.dart
@@ -281,12 +281,6 @@ class DynamicLinkInfo {
*/
IosInfo iosInfo;
/**
- * Declares that the Dynamic Link is used in an advertisement.
- * See the 'ad' parameter in the
- * [documentation](https://firebase.google.com/docs/dynamic-links/android#create-a-dynamic-link-programmatically).
- */
- core.bool isAd;
- /**
* The link your app will open, You can specify any URL your app can handle.
* This link must be a well-formatted URL, be properly URL-encoded, and use
* the HTTP or HTTPS scheme. See 'link' parameters in the
@@ -316,9 +310,6 @@ class DynamicLinkInfo {
if (_json.containsKey("iosInfo")) {
iosInfo = new IosInfo.fromJson(_json["iosInfo"]);
}
- if (_json.containsKey("isAd")) {
- isAd = _json["isAd"];
- }
if (_json.containsKey("link")) {
link = _json["link"];
}
@@ -341,9 +332,6 @@ class DynamicLinkInfo {
if (iosInfo != null) {
_json["iosInfo"] = (iosInfo).toJson();
}
- if (isAd != null) {
- _json["isAd"] = isAd;
- }
if (link != null) {
_json["link"] = link;
}
« no previous file with comments | « generated/googleapis/lib/drive/v3.dart ('k') | generated/googleapis/lib/fitness/v1.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698