[][src]Struct google_dfareporting2d8::PathToConversionReportCompatibleFields

pub struct PathToConversionReportCompatibleFields {
    pub metrics: Option<Vec<Metric>>,
    pub per_interaction_dimensions: Option<Vec<Dimension>>,
    pub kind: Option<String>,
    pub conversion_dimensions: Option<Vec<Dimension>>,
    pub custom_floodlight_variables: Option<Vec<Dimension>>,
}

Represents fields that are compatible to be selected for a report of type "PATH_TO_CONVERSION".

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

Fields

metrics: Option<Vec<Metric>>

Metrics which are compatible to be selected in the "metricNames" section of the report.

per_interaction_dimensions: Option<Vec<Dimension>>

Per-interaction dimensions which are compatible to be selected in the "perInteractionDimensions" section of the report.

kind: Option<String>

The kind of resource this is, in this case dfareporting#pathToConversionReportCompatibleFields.

conversion_dimensions: Option<Vec<Dimension>>

Conversion dimensions which are compatible to be selected in the "conversionDimensions" section of the report.

custom_floodlight_variables: Option<Vec<Dimension>>

Custom floodlight variables which are compatible to be selected in the "customFloodlightVariables" section of the report.

Trait Implementations

impl Clone for PathToConversionReportCompatibleFields[src]

impl Debug for PathToConversionReportCompatibleFields[src]

impl Default for PathToConversionReportCompatibleFields[src]

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

impl Part for PathToConversionReportCompatibleFields[src]

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