pub struct GetIosReopenAttributionResponse {
pub deep_link: Option<String>,
pub invitation_id: Option<String>,
pub ios_min_app_version: 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 get reopen attribution for app universal link open deeplinking. This endpoint is meant for only iOS requests.
§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).
- reopen attribution (response)
Fields§
§deep_link: Option<String>The deep-link attributed the app universal link open. For both regular FDL links and invite FDL links.
invitation_id: Option<String>Optional invitation ID, for only invite typed requested FDL links.
ios_min_app_version: Option<String>FDL input value of the “&imv=” parameter, minimum app version to be returned to Google Firebase SDK running on iOS-9.
resolved_link: Option<String>The entire FDL, expanded from a short link. It is the same as the requested_link, if it is long.
utm_campaign: Option<String>Scion campaign value to be propagated by iSDK to Scion at app-reopen.
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 app-reopen.
utm_source: Option<String>Scion source value to be propagated by iSDK to Scion at app-reopen.
utm_term: Option<String>Scion term value to be propagated by iSDK to Scion at app-reopen.
Trait Implementations§
Source§impl Clone for GetIosReopenAttributionResponse
impl Clone for GetIosReopenAttributionResponse
Source§fn clone(&self) -> GetIosReopenAttributionResponse
fn clone(&self) -> GetIosReopenAttributionResponse
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for GetIosReopenAttributionResponse
impl Default for GetIosReopenAttributionResponse
Source§fn default() -> GetIosReopenAttributionResponse
fn default() -> GetIosReopenAttributionResponse
Source§impl<'de> Deserialize<'de> for GetIosReopenAttributionResponse
impl<'de> Deserialize<'de> for GetIosReopenAttributionResponse
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 GetIosReopenAttributionResponse
Auto Trait Implementations§
impl Freeze for GetIosReopenAttributionResponse
impl RefUnwindSafe for GetIosReopenAttributionResponse
impl Send for GetIosReopenAttributionResponse
impl Sync for GetIosReopenAttributionResponse
impl Unpin for GetIosReopenAttributionResponse
impl UnwindSafe for GetIosReopenAttributionResponse
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