Struct google_displayvideo1::api::ConversionCountingConfig[][src]

pub struct ConversionCountingConfig {
    pub floodlight_activity_configs: Option<Vec<TrackingFloodlightActivityConfig>>,
    pub post_view_count_percentage_millis: Option<String>,
}

Settings that control how conversions are counted. All post-click conversions will be counted. A percentage value can be set for post-view conversions counting.

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

Fields

floodlight_activity_configs: Option<Vec<TrackingFloodlightActivityConfig>>

The Floodlight activity configs used to track conversions. The number of conversions counted is the sum of all of the conversions counted by all of the Floodlight activity IDs specified in this field.

post_view_count_percentage_millis: Option<String>

The percentage of post-view conversions to count, in millis (1/1000 of a percent). Must be between 0 and 100000 inclusive. For example, to track 50% of the post-click conversions, set a value of 50000.

Trait Implementations

impl Clone for ConversionCountingConfig[src]

impl Debug for ConversionCountingConfig[src]

impl Default for ConversionCountingConfig[src]

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

impl Part for ConversionCountingConfig[src]

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