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

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

Issue 2779563003: Api-roll 47: 2017-03-27 (Closed)
Patch Set: Created 3 years, 9 months 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/firebaserules/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 5af23a9817fed3510800301ad8b94ff2222cda6f..a657986efd910dfb9f306570fa2913b0cd065b37 100644
--- a/generated/googleapis/lib/firebasedynamiclinks/v1.dart
+++ b/generated/googleapis/lib/firebasedynamiclinks/v1.dart
@@ -289,6 +289,8 @@ class DynamicLinkInfo {
* Required.
*/
core.String link;
+ /** Information of navigation behavior of a Firebase Dynamic Links. */
+ NavigationInfo navigationInfo;
/**
* Parameters for social meta tag params.
* Used to set meta tag data for link previews on social sites.
@@ -313,6 +315,9 @@ class DynamicLinkInfo {
if (_json.containsKey("link")) {
link = _json["link"];
}
+ if (_json.containsKey("navigationInfo")) {
+ navigationInfo = new NavigationInfo.fromJson(_json["navigationInfo"]);
+ }
if (_json.containsKey("socialMetaTagInfo")) {
socialMetaTagInfo = new SocialMetaTagInfo.fromJson(_json["socialMetaTagInfo"]);
}
@@ -335,6 +340,9 @@ class DynamicLinkInfo {
if (link != null) {
_json["link"] = link;
}
+ if (navigationInfo != null) {
+ _json["navigationInfo"] = (navigationInfo).toJson();
+ }
if (socialMetaTagInfo != null) {
_json["socialMetaTagInfo"] = (socialMetaTagInfo).toJson();
}
@@ -621,6 +629,31 @@ class IosInfo {
}
}
+/** Information of navigation behavior. */
+class NavigationInfo {
+ /**
+ * If this option is on, FDL click will be forced to redirect rather than
+ * show an interstitial page.
+ */
+ core.bool enableForcedRedirect;
+
+ NavigationInfo();
+
+ NavigationInfo.fromJson(core.Map _json) {
+ if (_json.containsKey("enableForcedRedirect")) {
+ enableForcedRedirect = _json["enableForcedRedirect"];
+ }
+ }
+
+ core.Map toJson() {
+ var _json = new core.Map();
+ if (enableForcedRedirect != null) {
+ _json["enableForcedRedirect"] = enableForcedRedirect;
+ }
+ return _json;
+ }
+}
+
/**
* Parameters for social meta tag params.
* Used to set meta tag data for link previews on social sites.
« no previous file with comments | « generated/googleapis/lib/drive/v3.dart ('k') | generated/googleapis/lib/firebaserules/v1.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698