Struct GetIosPostInstallAttributionResponse

Source
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).

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

Source§

fn clone(&self) -> GetIosPostInstallAttributionResponse

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for GetIosPostInstallAttributionResponse

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for GetIosPostInstallAttributionResponse

Source§

fn default() -> GetIosPostInstallAttributionResponse

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for GetIosPostInstallAttributionResponse

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Serialize for GetIosPostInstallAttributionResponse

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl ResponseResult for GetIosPostInstallAttributionResponse

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts 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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts 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
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> ErasedDestructor for T
where T: 'static,