Struct google_firebasedynamiclinks1::DynamicLinkInfo [] [src]

pub struct DynamicLinkInfo {
    pub navigation_info: Option<NavigationInfo>,
    pub analytics_info: Option<AnalyticsInfo>,
    pub link: Option<String>,
    pub ios_info: Option<IosInfo>,
    pub android_info: Option<AndroidInfo>,
    pub social_meta_tag_info: Option<SocialMetaTagInfo>,
    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.

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.

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.

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]

[src]

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

impl Clone for DynamicLinkInfo
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for DynamicLinkInfo
[src]

[src]

Formats the value using the given formatter.

impl Part for DynamicLinkInfo
[src]