pub struct GetIosPostInstallAttributionResponse {Show 16 fields
pub app_minimum_version: Option<String>,
pub attribution_confidence: Option<String>,
pub deep_link: Option<String>,
pub external_browser_destination_link: Option<String>,
pub fallback_link: Option<String>,
pub invitation_id: Option<String>,
pub is_strong_match_executable: Option<bool>,
pub match_message: Option<String>,
pub request_ip_version: Option<String>,
pub requested_link: 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>,
}Expand description
Response for iSDK to execute strong match flow for post-install attribution. Information of the resolved FDL link.
§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 (response)
Fields§
§app_minimum_version: Option<String>The minimum version for app, specified by dev through ?imv= parameter. Return to iSDK to allow app to evaluate if current version meets this.
attribution_confidence: Option<String>The confidence of the returned attribution.
deep_link: Option<String>The deep-link attributed post-install via one of several techniques (device heuristics, copy unique).
external_browser_destination_link: Option<String>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
fallback_link: Option<String>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).
invitation_id: Option<String>Invitation ID attributed post-install via one of several techniques (device heuristics, copy unique).
is_strong_match_executable: Option<bool>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.
match_message: Option<String>Describes why match failed, ie: “discarded due to low confidence”. This message will be publicly visible.
request_ip_version: Option<String>Which IP version the request was made from.
requested_link: Option<String>Entire FDL (short or long) attributed post-install via one of several techniques (device heuristics, copy unique).
resolved_link: Option<String>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).
utm_campaign: Option<String>Scion campaign value to be propagated by iSDK to Scion at post-install.
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 post-install.
utm_source: Option<String>Scion source value to be propagated by iSDK to Scion at post-install.
utm_term: Option<String>Scion term value to be propagated by iSDK to Scion at app-reopen.
Trait Implementations§
Source§impl Clone for GetIosPostInstallAttributionResponse
impl Clone for GetIosPostInstallAttributionResponse
Source§fn clone(&self) -> GetIosPostInstallAttributionResponse
fn clone(&self) -> GetIosPostInstallAttributionResponse
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for GetIosPostInstallAttributionResponse
impl Default for GetIosPostInstallAttributionResponse
Source§fn default() -> GetIosPostInstallAttributionResponse
fn default() -> GetIosPostInstallAttributionResponse
Source§impl<'de> Deserialize<'de> for GetIosPostInstallAttributionResponse
impl<'de> Deserialize<'de> for GetIosPostInstallAttributionResponse
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 ResponseResult for GetIosPostInstallAttributionResponse
Auto Trait Implementations§
impl Freeze for GetIosPostInstallAttributionResponse
impl RefUnwindSafe for GetIosPostInstallAttributionResponse
impl Send for GetIosPostInstallAttributionResponse
impl Sync for GetIosPostInstallAttributionResponse
impl Unpin for GetIosPostInstallAttributionResponse
impl UnwindSafe for GetIosPostInstallAttributionResponse
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