pub struct ReportPathToConversionCriteriaReportProperties {
pub clicks_lookback_window: Option<i32>,
pub impressions_lookback_window: Option<i32>,
pub include_attributed_ip_conversions: Option<bool>,
pub include_unattributed_cookie_conversions: Option<bool>,
pub include_unattributed_ip_conversions: Option<bool>,
pub maximum_click_interactions: Option<i32>,
pub maximum_impression_interactions: Option<i32>,
pub maximum_interaction_gap: Option<i32>,
pub pivot_on_interaction_path: Option<bool>,
}Expand description
The properties of the report.
This type is not used in any activity, and only used as part of another schema.
Fields§
§clicks_lookback_window: Option<i32>DFA checks to see if a click interaction occurred within the specified period of time before a conversion. By default the value is pulled from Floodlight or you can manually enter a custom value. Valid values: 1-90.
impressions_lookback_window: Option<i32>DFA checks to see if an impression interaction occurred within the specified period of time before a conversion. By default the value is pulled from Floodlight or you can manually enter a custom value. Valid values: 1-90.
include_attributed_ip_conversions: Option<bool>Deprecated: has no effect.
Include conversions of users with a DoubleClick cookie but without an exposure. That means the user did not click or see an ad from the advertiser within the Floodlight group, or that the interaction happened outside the lookback window.
include_unattributed_ip_conversions: Option<bool>Include conversions that have no associated cookies and no exposures. It’s therefore impossible to know how the user was exposed to your ads during the lookback window prior to a conversion.
maximum_click_interactions: Option<i32>The maximum number of click interactions to include in the report. Advertisers currently paying for E2C reports get up to 200 (100 clicks, 100 impressions). If another advertiser in your network is paying for E2C, you can have up to 5 total exposures per report.
maximum_impression_interactions: Option<i32>The maximum number of click interactions to include in the report. Advertisers currently paying for E2C reports get up to 200 (100 clicks, 100 impressions). If another advertiser in your network is paying for E2C, you can have up to 5 total exposures per report.
maximum_interaction_gap: Option<i32>The maximum amount of time that can take place between interactions (clicks or impressions) by the same user. Valid values: 1-90.
pivot_on_interaction_path: Option<bool>Enable pivoting on interaction path.
Trait Implementations§
Source§impl Clone for ReportPathToConversionCriteriaReportProperties
impl Clone for ReportPathToConversionCriteriaReportProperties
Source§fn clone(&self) -> ReportPathToConversionCriteriaReportProperties
fn clone(&self) -> ReportPathToConversionCriteriaReportProperties
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for ReportPathToConversionCriteriaReportProperties
impl Default for ReportPathToConversionCriteriaReportProperties
Source§fn default() -> ReportPathToConversionCriteriaReportProperties
fn default() -> ReportPathToConversionCriteriaReportProperties
Source§impl<'de> Deserialize<'de> for ReportPathToConversionCriteriaReportProperties
impl<'de> Deserialize<'de> for ReportPathToConversionCriteriaReportProperties
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
impl NestedType for ReportPathToConversionCriteriaReportProperties
impl Part for ReportPathToConversionCriteriaReportProperties
Auto Trait Implementations§
impl Freeze for ReportPathToConversionCriteriaReportProperties
impl RefUnwindSafe for ReportPathToConversionCriteriaReportProperties
impl Send for ReportPathToConversionCriteriaReportProperties
impl Sync for ReportPathToConversionCriteriaReportProperties
impl Unpin for ReportPathToConversionCriteriaReportProperties
impl UnwindSafe for ReportPathToConversionCriteriaReportProperties
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more