[][src]Struct google_dfareporting3d2::AdBlockingConfiguration

pub struct AdBlockingConfiguration {
    pub creative_bundle_id: Option<String>,
    pub click_through_url: Option<String>,
    pub enabled: Option<bool>,
    pub override_click_through_url: Option<bool>,
}

Campaign ad blocking settings.

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

Fields

creative_bundle_id: Option<String>

ID of a creative bundle to use for this campaign. If set, brand-neutral ads will select creatives from this bundle. Otherwise, a default transparent pixel will be used.

click_through_url: Option<String>

Click-through URL used by brand-neutral ads. This is a required field when overrideClickThroughUrl is set to true.

enabled: Option<bool>

Whether this campaign has enabled ad blocking. When true, ad blocking is enabled for placements in the campaign, but this may be overridden by site and placement settings. When false, ad blocking is disabled for all placements under the campaign, regardless of site and placement settings.

override_click_through_url: Option<bool>

Whether the brand-neutral ad's click-through URL comes from the campaign's creative bundle or the override URL. Must be set to true if ad blocking is enabled and no creative bundle is configured.

Trait Implementations

impl Part for AdBlockingConfiguration[src]

impl Default for AdBlockingConfiguration[src]

impl Clone for AdBlockingConfiguration[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for AdBlockingConfiguration[src]

impl Serialize for AdBlockingConfiguration[src]

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

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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.

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

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

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

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

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