Struct google_analytics3::RealtimeDataQuery[][src]

pub struct RealtimeDataQuery {
    pub max_results: Option<i32>,
    pub sort: Option<Vec<String>>,
    pub metrics: Option<Vec<String>>,
    pub dimensions: Option<String>,
    pub filters: Option<String>,
    pub ids: Option<String>,
}

Real time 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 real time data is sorted.

List of real time metrics.

List of real time dimensions.

Comma-separated list of dimension or metric filters.

Unique table ID.

Trait Implementations

impl Default for RealtimeDataQuery
[src]

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

impl Clone for RealtimeDataQuery
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for RealtimeDataQuery
[src]

Formats the value using the given formatter. Read more

impl NestedType for RealtimeDataQuery
[src]

impl Part for RealtimeDataQuery
[src]

Auto Trait Implementations