[][src]Struct google_dfareporting2d8::ReportFloodlightCriteria

pub struct ReportFloodlightCriteria {
    pub floodlight_config_id: Option<DimensionValue>,
    pub dimensions: Option<Vec<SortedDimension>>,
    pub metric_names: Option<Vec<String>>,
    pub date_range: Option<DateRange>,
    pub custom_rich_media_events: Option<Vec<DimensionValue>>,
    pub dimension_filters: Option<Vec<DimensionValue>>,
    pub report_properties: Option<ReportFloodlightCriteriaReportProperties>,
}

The report criteria for a report of type "FLOODLIGHT".

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

Fields

floodlight_config_id: Option<DimensionValue>

The floodlight ID for which to show data in this report. All advertisers associated with that ID will automatically be added. The dimension of the value needs to be 'dfa:floodlightConfigId'.

dimensions: Option<Vec<SortedDimension>>

The list of dimensions the report should include.

metric_names: Option<Vec<String>>

The list of names of metrics the report should include.

date_range: Option<DateRange>

The date range this report should be run for.

custom_rich_media_events: Option<Vec<DimensionValue>>

The list of custom rich media events to include.

dimension_filters: Option<Vec<DimensionValue>>

The list of filters on which dimensions are filtered. Filters for different dimensions are ANDed, filters for the same dimension are grouped together and ORed.

report_properties: Option<ReportFloodlightCriteriaReportProperties>

The properties of the report.

Trait Implementations

impl Part for ReportFloodlightCriteria[src]

impl NestedType for ReportFloodlightCriteria[src]

impl Default for ReportFloodlightCriteria[src]

impl Clone for ReportFloodlightCriteria[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for ReportFloodlightCriteria[src]

impl Serialize for ReportFloodlightCriteria[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]