Struct google_analytics3::RealtimeDataColumnHeaders[][src]

pub struct RealtimeDataColumnHeaders {
    pub data_type: Option<String>,
    pub column_type: Option<String>,
    pub name: Option<String>,
}

Column headers that list dimension names followed by the metric names. The order of dimensions and metrics is same as specified in the request.

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

Fields

Data type. Dimension column headers have only STRING as the data type. Metric column headers have data types for metric values such as INTEGER, DOUBLE, CURRENCY etc.

Column Type. Either DIMENSION or METRIC.

Column name.

Trait Implementations

impl Default for RealtimeDataColumnHeaders
[src]

Returns the "default value" for a type. Read more

impl Clone for RealtimeDataColumnHeaders
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for RealtimeDataColumnHeaders
[src]

Formats the value using the given formatter. Read more

impl NestedType for RealtimeDataColumnHeaders
[src]

impl Part for RealtimeDataColumnHeaders
[src]

Auto Trait Implementations