[][src]Struct google_adexchangeseller2::ReportingMetadataEntry

pub struct ReportingMetadataEntry {
    pub required_metrics: Option<Vec<String>>,
    pub kind: Option<String>,
    pub compatible_metrics: Option<Vec<String>>,
    pub compatible_dimensions: Option<Vec<String>>,
    pub id: Option<String>,
    pub required_dimensions: Option<Vec<String>>,
    pub supported_products: Option<Vec<String>>,
}

There is no detailed description.

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

Fields

required_metrics: Option<Vec<String>>

The names of the metrics which the dimension or metric this reporting metadata entry describes requires to also be present in order for the report to be valid. Omitting these will not cause an error or warning, but may result in data which cannot be correctly interpreted.

kind: Option<String>

Kind of resource this is, in this case adexchangeseller#reportingMetadataEntry.

compatible_metrics: Option<Vec<String>>

The names of the metrics the dimension or metric this reporting metadata entry describes is compatible with.

compatible_dimensions: Option<Vec<String>>

For metrics this is a list of dimension IDs which the metric is compatible with, for dimensions it is a list of compatibility groups the dimension belongs to.

id: Option<String>

Unique identifier of this reporting metadata entry, corresponding to the name of the appropriate dimension or metric.

required_dimensions: Option<Vec<String>>

The names of the dimensions which the dimension or metric this reporting metadata entry describes requires to also be present in order for the report to be valid. Omitting these will not cause an error or warning, but may result in data which cannot be correctly interpreted.

supported_products: Option<Vec<String>>

The codes of the projects supported by the dimension or metric this reporting metadata entry describes.

Trait Implementations

impl Clone for ReportingMetadataEntry[src]

impl Debug for ReportingMetadataEntry[src]

impl Default for ReportingMetadataEntry[src]

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

impl Part for ReportingMetadataEntry[src]

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