Struct google_youtubeanalytics1::ResultTableColumnHeaders[][src]

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

This value specifies information about the data returned in the rows fields. Each item in the columnHeaders list identifies a field returned in the rows value, which contains a list of comma-delimited data. The columnHeaders list will begin with the dimensions specified in the API request, which will be followed by the metrics specified in the API request. The order of both dimensions and metrics will match the ordering in the API request. For example, if the API request contains the parameters dimensions=ageGroup,gender&metrics=viewerPercentage, the API response will return columns in this order: ageGroup,gender,viewerPercentage.

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

Fields

The type of the data in the column (STRING, INTEGER, FLOAT, etc.).

The type of the column (DIMENSION or METRIC).

The name of the dimension or metric.

Trait Implementations

impl Default for ResultTableColumnHeaders
[src]

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

impl Clone for ResultTableColumnHeaders
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ResultTableColumnHeaders
[src]

Formats the value using the given formatter. Read more

impl NestedType for ResultTableColumnHeaders
[src]

impl Part for ResultTableColumnHeaders
[src]

Auto Trait Implementations