Struct google_firebasedynamiclinks1::DynamicLinkInfo[][src]

pub struct DynamicLinkInfo {
    pub navigation_info: Option<NavigationInfo>,
    pub analytics_info: Option<AnalyticsInfo>,
    pub ios_info: Option<IosInfo>,
    pub android_info: Option<AndroidInfo>,
    pub social_meta_tag_info: Option<SocialMetaTagInfo>,
    pub link: Option<String>,
    pub desktop_info: Option<DesktopInfo>,
    pub dynamic_link_domain: Option<String>,
}

Information about a Dynamic Link.

This type is not used in any activity, and only used as part of another schema.

Fields

Information of navigation behavior of a Firebase Dynamic Links.

Parameters used for tracking. See all tracking parameters in the documentation.

iOS related information. See iOS related parameters in the documentation.

Android related information. See Android related parameters in the documentation.

Parameters for social meta tag params. Used to set meta tag data for link previews on social sites.

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 documentation.

Required.

Desktop related information. See desktop related parameters in the documentation.

Dynamic Links domain that the project owns, e.g. abcd.app.goo.gl Learn more on how to set up Dynamic Link domain associated with your Firebase project.

Required.

Trait Implementations

impl Default for DynamicLinkInfo
[src]

Returns the "default value" for a type. Read more

impl Clone for DynamicLinkInfo
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for DynamicLinkInfo
[src]

Formats the value using the given formatter. Read more

impl Part for DynamicLinkInfo
[src]

Auto Trait Implementations