Struct google_firebasedynamiclinks1::api::GetIosReopenAttributionResponse[][src]

pub struct GetIosReopenAttributionResponse {
    pub deep_link: Option<String>,
    pub invitation_id: Option<String>,
    pub ios_min_app_version: Option<String>,
    pub resolved_link: Option<String>,
    pub utm_campaign: Option<String>,
    pub utm_content: Option<String>,
    pub utm_medium: Option<String>,
    pub utm_source: Option<String>,
    pub utm_term: Option<String>,
}

Response for iSDK to get reopen attribution for app universal link open deeplinking. This endpoint is meant for only iOS requests.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

deep_link: Option<String>

The deep-link attributed the app universal link open. For both regular FDL links and invite FDL links.

invitation_id: Option<String>

Optional invitation ID, for only invite typed requested FDL links.

ios_min_app_version: Option<String>

FDL input value of the "&imv=" parameter, minimum app version to be returned to Google Firebase SDK running on iOS-9.

resolved_link: Option<String>

The entire FDL, expanded from a short link. It is the same as the requested_link, if it is long.

utm_campaign: Option<String>

Scion campaign value to be propagated by iSDK to Scion at app-reopen.

utm_content: Option<String>

Scion content value to be propagated by iSDK to Scion at app-reopen.

utm_medium: Option<String>

Scion medium value to be propagated by iSDK to Scion at app-reopen.

utm_source: Option<String>

Scion source value to be propagated by iSDK to Scion at app-reopen.

utm_term: Option<String>

Scion term value to be propagated by iSDK to Scion at app-reopen.

Trait Implementations

impl Clone for GetIosReopenAttributionResponse[src]

impl Debug for GetIosReopenAttributionResponse[src]

impl Default for GetIosReopenAttributionResponse[src]

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

impl ResponseResult for GetIosReopenAttributionResponse[src]

impl Serialize for GetIosReopenAttributionResponse[src]

Auto Trait Implementations

impl RefUnwindSafe for GetIosReopenAttributionResponse[src]

impl Send for GetIosReopenAttributionResponse[src]

impl Sync for GetIosReopenAttributionResponse[src]

impl Unpin for GetIosReopenAttributionResponse[src]

impl UnwindSafe for GetIosReopenAttributionResponse[src]

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