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 moreSource§impl Default for GetIosPostInstallAttributionRequest
impl Default for GetIosPostInstallAttributionRequest
Source§fn default() -> GetIosPostInstallAttributionRequest
fn default() -> GetIosPostInstallAttributionRequest
Source§impl<'de> Deserialize<'de> for GetIosPostInstallAttributionRequest
impl<'de> Deserialize<'de> for GetIosPostInstallAttributionRequest
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
impl RequestValue for GetIosPostInstallAttributionRequest
Auto Trait Implementations§
impl Freeze for GetIosPostInstallAttributionRequest
impl RefUnwindSafe for GetIosPostInstallAttributionRequest
impl Send for GetIosPostInstallAttributionRequest
impl Sync for GetIosPostInstallAttributionRequest
impl Unpin for GetIosPostInstallAttributionRequest
impl UnwindSafe for GetIosPostInstallAttributionRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more