pub struct GetIosPostInstallAttributionRequest {
pub app_installation_time: Option<i64>,
pub bundle_id: Option<String>,
pub device: Option<DeviceInfo>,
pub ios_version: Option<String>,
pub retrieval_method: Option<String>,
pub sdk_version: Option<String>,
pub unique_match_link_to_check: Option<String>,
pub visual_style: Option<String>,
}Expand description
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).
- install attribution (request)
Fields§
§app_installation_time: Option<i64>App installation epoch time (https://en.wikipedia.org/wiki/Unix_time). This is a client signal for a more accurate weak match.
bundle_id: Option<String>APP bundle ID.
device: Option<DeviceInfo>Device information.
ios_version: Option<String>iOS version, ie: 9.3.5. Consider adding “build”.
retrieval_method: Option<String>App post install attribution retrieval information. Disambiguates mechanism (iSDK or developer invoked) to retrieve payload from clicked link.
sdk_version: Option<String>Google SDK version. Version takes the form “$major.$minor.$patch”
unique_match_link_to_check: Option<String>Possible unique matched link that server need to check before performing device heuristics match. If passed link is short server need to expand the link. If link is long server need to vslidate the link.
visual_style: Option<String>Strong match page information. Disambiguates between default UI and custom page to present when strong match succeeds/fails to find cookie.
Trait Implementations§
Source§impl Clone for GetIosPostInstallAttributionRequest
impl Clone for GetIosPostInstallAttributionRequest
Source§fn clone(&self) -> GetIosPostInstallAttributionRequest
fn clone(&self) -> GetIosPostInstallAttributionRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more