[][src]Struct google_firebasedynamiclinks1::GooglePlayAnalytics

pub struct GooglePlayAnalytics {
    pub utm_medium: Option<String>,
    pub utm_content: Option<String>,
    pub utm_source: Option<String>,
    pub gclid: Option<String>,
    pub utm_campaign: Option<String>,
    pub utm_term: Option<String>,
}

Parameters for Google Play Campaign Measurements. Learn more

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

Fields

utm_medium: Option<String>

Campaign medium; used to identify a medium such as email or cost-per-click.

utm_content: Option<String>

Campaign content; used for A/B testing and content-targeted ads to differentiate ads or links that point to the same URL.

utm_source: Option<String>

Campaign source; used to identify a search engine, newsletter, or other source.

gclid: Option<String>

AdWords autotagging parameter; used to measure Google AdWords ads. This value is generated dynamically and should never be modified.

utm_campaign: Option<String>

Campaign name; used for keyword analysis to identify a specific product promotion or strategic campaign.

utm_term: Option<String>

Campaign term; used with paid search to supply the keywords for ads.

Trait Implementations

impl Clone for GooglePlayAnalytics[src]

impl Debug for GooglePlayAnalytics[src]

impl Default for GooglePlayAnalytics[src]

impl<'de> Deserialize<'de> for GooglePlayAnalytics[src]

impl Part for GooglePlayAnalytics[src]

impl Serialize for GooglePlayAnalytics[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any