Struct google_analytics3::api::RealtimeDataQuery
source · pub struct RealtimeDataQuery {
pub dimensions: Option<String>,
pub filters: Option<String>,
pub ids: Option<String>,
pub max_results: Option<i32>,
pub metrics: Option<Vec<String>>,
pub sort: Option<Vec<String>>,
}Expand description
Real time data request query parameters.
This type is not used in any activity, and only used as part of another schema.
Fields§
§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.
max_results: Option<i32>Maximum results per page.
metrics: Option<Vec<String>>List of real time metrics.
sort: Option<Vec<String>>List of dimensions or metrics based on which real time data is sorted.
Trait Implementations§
source§impl Clone for RealtimeDataQuery
impl Clone for RealtimeDataQuery
source§fn clone(&self) -> RealtimeDataQuery
fn clone(&self) -> RealtimeDataQuery
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for RealtimeDataQuery
impl Debug for RealtimeDataQuery
source§impl Default for RealtimeDataQuery
impl Default for RealtimeDataQuery
source§fn default() -> RealtimeDataQuery
fn default() -> RealtimeDataQuery
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for RealtimeDataQuery
impl<'de> Deserialize<'de> for RealtimeDataQuery
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more