Struct google_firebasedynamiclinks1::GetIosPostInstallAttributionRequest[][src]

pub struct GetIosPostInstallAttributionRequest {
    pub visual_style: Option<String>,
    pub sdk_version: Option<String>,
    pub app_installation_time: Option<String>,
    pub unique_match_link_to_check: Option<String>,
    pub retrieval_method: Option<String>,
    pub device: Option<DeviceInfo>,
    pub ios_version: Option<String>,
    pub bundle_id: Option<String>,
}

Request for iSDK to execute strong match flow for post-install attribution. This is meant for iOS requests only. Requests from other platforms will not be honored.

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

Strong match page information. Disambiguates between default UI and custom page to present when strong match succeeds/fails to find cookie.

Google SDK version.

App installation epoch time (https://en.wikipedia.org/wiki/Unix_time). This is a client signal for a more accurate weak match.

Possible unique matched link that server need to check before performing fingerprint match. If passed link is short server need to expand the link. If link is long server need to vslidate the link.

App post install attribution retrieval information. Disambiguates mechanism (iSDK or developer invoked) to retrieve payload from clicked link.

Device information.

iOS version, ie: 9.3.5. Consider adding "build".

APP bundle ID.

Trait Implementations

impl Default for GetIosPostInstallAttributionRequest
[src]

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

impl Clone for GetIosPostInstallAttributionRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for GetIosPostInstallAttributionRequest
[src]

Formats the value using the given formatter. Read more

impl RequestValue for GetIosPostInstallAttributionRequest
[src]

Auto Trait Implementations