Struct google_adexchangebuyer1d3::api::CreativeNativeAd[][src]

pub struct CreativeNativeAd {
    pub advertiser: Option<String>,
    pub app_icon: Option<CreativeNativeAdAppIcon>,
    pub body: Option<String>,
    pub call_to_action: Option<String>,
    pub click_tracking_url: Option<String>,
    pub headline: Option<String>,
    pub image: Option<CreativeNativeAdImage>,
    pub impression_tracking_url: Option<Vec<String>>,
    pub logo: Option<CreativeNativeAdLogo>,
    pub price: Option<String>,
    pub star_rating: Option<f64>,
}

If nativeAd is set, HTMLSnippet and videoURL should not be set.

This type is not used in any activity, and only used as part of another schema.

Fields

advertiser: Option<String>

no description provided

app_icon: Option<CreativeNativeAdAppIcon>

The app icon, for app download ads.

body: Option<String>

A long description of the ad.

call_to_action: Option<String>

A label for the button that the user is supposed to click.

click_tracking_url: Option<String>

The URL to use for click tracking.

headline: Option<String>

A short title for the ad.

image: Option<CreativeNativeAdImage>

A large image.

impression_tracking_url: Option<Vec<String>>

The URLs are called when the impression is rendered.

A smaller image, for the advertiser logo.

price: Option<String>

The price of the promoted app including the currency info.

star_rating: Option<f64>

The app rating in the app store. Must be in the range [0-5].

Trait Implementations

impl Clone for CreativeNativeAd[src]

impl Debug for CreativeNativeAd[src]

impl Default for CreativeNativeAd[src]

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

impl NestedType for CreativeNativeAd[src]

impl Part for CreativeNativeAd[src]

impl Serialize for CreativeNativeAd[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.