Struct google_displayvideo1::api::MobileApp[][src]

pub struct MobileApp {
    pub app_id: Option<String>,
    pub display_name: Option<String>,
    pub platform: Option<String>,
    pub publisher: Option<String>,
}

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

impl Clone for MobileApp[src]

impl Debug for MobileApp[src]

impl Default for MobileApp[src]

impl<'de> Deserialize<'de> for MobileApp[src]

impl Part for MobileApp[src]

impl Serialize for MobileApp[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.