[][src]Struct google_displayvideo1::TrackingFloodlightActivityConfig

pub struct TrackingFloodlightActivityConfig {
    pub post_click_lookback_window_days: Option<i32>,
    pub floodlight_activity_id: Option<String>,
    pub post_view_lookback_window_days: Option<i32>,
}

Settings that control the behavior of a single Floodlight activity config.

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

Fields

post_click_lookback_window_days: Option<i32>

Required. The number of days after an ad has been clicked in which a conversion may be counted. Must be between 0 and 90 inclusive.

floodlight_activity_id: Option<String>

Required. The ID of the Floodlight activity.

post_view_lookback_window_days: Option<i32>

Required. The number of days after an ad has been viewed in which a conversion may be counted. Must be between 0 and 90 inclusive.

Trait Implementations

impl Clone for TrackingFloodlightActivityConfig[src]

impl Debug for TrackingFloodlightActivityConfig[src]

impl Default for TrackingFloodlightActivityConfig[src]

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

impl Part for TrackingFloodlightActivityConfig[src]

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