pub struct MobileApp {
pub app_id: Option<String>,
pub display_name: Option<String>,
pub platform: Option<String>,
pub publisher: Option<String>,
}
Expand description
A mobile app promoted by a mobile app install line item.
This type is not used in any activity, and only used as part of another schema.
Fields§
§app_id: Option<String>
Required. The ID of the app provided by the platform store. Android apps are identified by the bundle ID used by Android’s Play store, such as com.google.android.gm
. iOS apps are identified by a nine-digit app ID used by Apple’s App store, such as 422689480
.
display_name: Option<String>
Output only. The app name.
platform: Option<String>
Output only. The app platform.
publisher: Option<String>
Output only. The app publisher.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for MobileApp
impl<'de> Deserialize<'de> for MobileApp
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>,
Deserialize this value from the given Serde deserializer. Read more
impl Part for MobileApp
Auto Trait Implementations§
impl Freeze for MobileApp
impl RefUnwindSafe for MobileApp
impl Send for MobileApp
impl Sync for MobileApp
impl Unpin for MobileApp
impl UnwindSafe for MobileApp
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
Mutably borrows from an owned value. Read more
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>
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 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>
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