Struct google_analytics3::GaDataQuery [] [src]

pub struct GaDataQuery {
    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 Debug for GaDataQuery
[src]

Formats the value using the given formatter.

impl Clone for GaDataQuery
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for GaDataQuery
[src]

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

impl NestedType for GaDataQuery
[src]

impl Part for GaDataQuery
[src]