Struct google_dfareporting3::AdBlockingConfiguration[][src]

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

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 used by brand-neutral ads. This is a required field when overrideClickThroughUrl is set to true.

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.

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 Default for AdBlockingConfiguration
[src]

Returns the "default value" for a type. Read more

impl Clone for AdBlockingConfiguration
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for AdBlockingConfiguration
[src]

Formats the value using the given formatter. Read more

impl Part for AdBlockingConfiguration
[src]

Auto Trait Implementations