Struct google_analytics3::McfDataQuery[][src]

pub struct McfDataQuery {
    pub max_results: Option<i32>,
    pub sort: Option<Vec<String>>,
    pub dimensions: Option<String>,
    pub start_date: Option<String>,
    pub start_index: Option<i32>,
    pub end_date: Option<String>,
    pub ids: Option<String>,
    pub metrics: Option<Vec<String>>,
    pub sampling_level: Option<String>,
    pub filters: Option<String>,
    pub segment: Option<String>,
}

Analytics data request query parameters.

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

Fields

Maximum results per page.

List of dimensions or metrics based on which Analytics data is sorted.

List of analytics dimensions.

Start date.

Start index.

End date.

Unique table ID.

List of analytics metrics.

Desired sampling level

Comma-separated list of dimension or metric filters.

Analytics advanced segment.

Trait Implementations

impl Default for McfDataQuery
[src]

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

impl Clone for McfDataQuery
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for McfDataQuery
[src]

Formats the value using the given formatter. Read more

impl NestedType for McfDataQuery
[src]

impl Part for McfDataQuery
[src]

Auto Trait Implementations