Struct google_firebasedynamiclinks1::GetIosPostInstallAttributionResponse[][src]

pub struct GetIosPostInstallAttributionResponse {
    pub utm_medium: Option<String>,
    pub utm_source: Option<String>,
    pub app_minimum_version: Option<String>,
    pub attribution_confidence: Option<String>,
    pub external_browser_destination_link: Option<String>,
    pub is_strong_match_executable: Option<bool>,
    pub request_ip_version: Option<String>,
    pub invitation_id: Option<String>,
    pub resolved_link: Option<String>,
    pub requested_link: Option<String>,
    pub fallback_link: Option<String>,
    pub match_message: Option<String>,
    pub utm_campaign: Option<String>,
    pub deep_link: Option<String>,
}

Response for iSDK to execute strong match flow for post-install attribution.

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

Scion medium value to be propagated by iSDK to Scion at post-install.

Scion source value to be propagated by iSDK to Scion at post-install.

The minimum version for app, specified by dev through ?imv= parameter. Return to iSDK to allow app to evaluate if current version meets this.

The confidence of the returned attribution.

User-agent specific custom-scheme URIs for iSDK to open. This will be set according to the user-agent tha the click was originally made in. There is no Safari-equivalent custom-scheme open URLs. ie: googlechrome://www.example.com ie: firefox://open-url?url=http://www.example.com ie: opera-http://example.com

Instruction for iSDK to attemmpt to perform strong match. For instance, if browser does not support/allow cookie or outside of support browsers, this will be false.

Which IP version the request was made from.

Invitation ID attributed post-install via one of several techniques (fingerprint, copy unique).

The entire FDL, expanded from a short link. It is the same as the requested_link, if it is long. Parameters from this should not be used directly (ie: server can default utm_[campaign|medium|source] to a value when requested_link lack them, server determine the best fallback_link when requested_link specifies >1 fallback links).

Entire FDL (short or long) attributed post-install via one of several techniques (fingerprint, copy unique).

The link to navigate to update the app if min version is not met. This is either (in order): 1) fallback link (from ?ifl= parameter, if specified by developer) or 2) AppStore URL (from ?isi= parameter, if specified), or 3) the payload link (from required link= parameter).

Describes why match failed, ie: "discarded due to low confidence". This message will be publicly visible.

Scion campaign value to be propagated by iSDK to Scion at post-install.

The deep-link attributed post-install via one of several techniques (fingerprint, copy unique).

Trait Implementations

impl Default for GetIosPostInstallAttributionResponse
[src]

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

impl Clone for GetIosPostInstallAttributionResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for GetIosPostInstallAttributionResponse
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for GetIosPostInstallAttributionResponse
[src]

Auto Trait Implementations