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
max_results: Option<i32>
Maximum results per page.
sort: Option<Vec<String>>
List of dimensions or metrics based on which real time data is sorted.
metrics: Option<Vec<String>>
List of real time metrics.
dimensions: Option<String>
List of real time dimensions.
filters: Option<String>
Comma-separated list of dimension or metric filters.
ids: Option<String>
Unique table ID.
Trait Implementations
impl Debug for RealtimeDataQuery[src]
impl Clone for RealtimeDataQuery[src]
fn clone(&self) -> RealtimeDataQuery
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl Default for RealtimeDataQuery[src]
fn default() -> RealtimeDataQuery
Returns the "default value" for a type. Read more