[][src]Struct google_displayvideo1::CmHybridConfig

pub struct CmHybridConfig {
    pub dv360_to_cm_data_sharing_enabled: Option<bool>,
    pub cm_account_id: Option<String>,
    pub dv360_to_cm_cost_reporting_enabled: Option<bool>,
    pub cm_floodlight_linking_authorized: Option<bool>,
    pub cm_floodlight_config_id: Option<String>,
    pub cm_syncable_site_ids: Option<Vec<String>>,
}

Settings for advertisers that use both Campaign Manager (CM) and third-party ad servers.

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

Fields

dv360_to_cm_data_sharing_enabled: Option<bool>

Whether or not to include DV360 data in CM data transfer reports.

cm_account_id: Option<String>

Required. Immutable. Account ID of the CM Floodlight configuration linked with the DV360 advertiser.

dv360_to_cm_cost_reporting_enabled: Option<bool>

Whether or not to report DV360 cost to CM.

cm_floodlight_linking_authorized: Option<bool>

Required. Immutable. By setting this field to true, you, on behalf of your company, authorize the sharing of information from the given Floodlight configuration to this Display & Video 360 advertiser.

cm_floodlight_config_id: Option<String>

Required. Immutable. ID of the CM Floodlight configuration linked with the DV360 advertiser.

cm_syncable_site_ids: Option<Vec<String>>

A list of CM sites whose placements will be synced to DV360 as creatives.

If absent or empty in CreateAdvertiser method, the system will automatically create a CM site.

Removing sites from this list may cause DV360 creatives synced from CM to be deleted. At least one site must be specified.

Trait Implementations

impl Clone for CmHybridConfig[src]

impl Debug for CmHybridConfig[src]

impl Default for CmHybridConfig[src]

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

impl Part for CmHybridConfig[src]

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

impl<T> Typeable for T where
    T: Any