Struct google_analytics3::api::DataMethods
source · pub struct DataMethods<'a, S>where
S: 'a,{ /* private fields */ }Expand description
A builder providing access to all methods supported on data resources.
It is not used directly, but through the Analytics hub.
Example
Instantiate a resource builder
extern crate hyper;
extern crate hyper_rustls;
extern crate google_analytics3 as analytics3;
use std::default::Default;
use analytics3::{Analytics, oauth2, hyper, hyper_rustls, chrono, FieldMask};
let secret: oauth2::ApplicationSecret = Default::default();
let auth = oauth2::InstalledFlowAuthenticator::builder(
secret,
oauth2::InstalledFlowReturnMethod::HTTPRedirect,
).build().await.unwrap();
let mut hub = Analytics::new(hyper::Client::builder().build(hyper_rustls::HttpsConnectorBuilder::new().with_native_roots().https_or_http().enable_http1().enable_http2().build()), auth);
// Usually you wouldn't bind this to a variable, but keep calling *CallBuilders*
// like `ga_get(...)`, `mcf_get(...)` and `realtime_get(...)`
// to build up your call.
let rb = hub.data();Implementations§
source§impl<'a, S> DataMethods<'a, S>
impl<'a, S> DataMethods<'a, S>
sourcepub fn ga_get(
&self,
ids: &str,
start_date: &str,
end_date: &str,
metrics: &str
) -> DataGaGetCall<'a, S>
pub fn ga_get( &self, ids: &str, start_date: &str, end_date: &str, metrics: &str ) -> DataGaGetCall<'a, S>
Create a builder to help you perform the following task:
Returns Analytics data for a view (profile).
Arguments
ids- Unique table ID for retrieving Analytics data. Table ID is of the form ga:XXXX, where XXXX is the Analytics view (profile) ID.start-date- Start date for fetching Analytics data. Requests can specify a start date formatted as YYYY-MM-DD, or as a relative date (e.g., today, yesterday, or 7daysAgo). The default value is 7daysAgo.end-date- End date for fetching Analytics data. Request can should specify an end date formatted as YYYY-MM-DD, or as a relative date (e.g., today, yesterday, or 7daysAgo). The default value is yesterday.metrics- A comma-separated list of Analytics metrics. E.g., ‘ga:sessions,ga:pageviews’. At least one metric must be specified.
sourcepub fn mcf_get(
&self,
ids: &str,
start_date: &str,
end_date: &str,
metrics: &str
) -> DataMcfGetCall<'a, S>
pub fn mcf_get( &self, ids: &str, start_date: &str, end_date: &str, metrics: &str ) -> DataMcfGetCall<'a, S>
Create a builder to help you perform the following task:
Returns Analytics Multi-Channel Funnels data for a view (profile).
Arguments
ids- Unique table ID for retrieving Analytics data. Table ID is of the form ga:XXXX, where XXXX is the Analytics view (profile) ID.start-date- Start date for fetching Analytics data. Requests can specify a start date formatted as YYYY-MM-DD, or as a relative date (e.g., today, yesterday, or 7daysAgo). The default value is 7daysAgo.end-date- End date for fetching Analytics data. Requests can specify a start date formatted as YYYY-MM-DD, or as a relative date (e.g., today, yesterday, or 7daysAgo). The default value is 7daysAgo.metrics- A comma-separated list of Multi-Channel Funnels metrics. E.g., ‘mcf:totalConversions,mcf:totalConversionValue’. At least one metric must be specified.
sourcepub fn realtime_get(
&self,
ids: &str,
metrics: &str
) -> DataRealtimeGetCall<'a, S>
pub fn realtime_get( &self, ids: &str, metrics: &str ) -> DataRealtimeGetCall<'a, S>
Create a builder to help you perform the following task:
Returns real time data for a view (profile).
Arguments
ids- Unique table ID for retrieving real time data. Table ID is of the form ga:XXXX, where XXXX is the Analytics view (profile) ID.metrics- A comma-separated list of real time metrics. E.g., ‘rt:activeUsers’. At least one metric must be specified.