Struct google_api_proto::google::analytics::data::v1beta::RunRealtimeReportRequest
source · pub struct RunRealtimeReportRequest {
pub property: String,
pub dimensions: Vec<Dimension>,
pub metrics: Vec<Metric>,
pub dimension_filter: Option<FilterExpression>,
pub metric_filter: Option<FilterExpression>,
pub limit: i64,
pub metric_aggregations: Vec<i32>,
pub order_bys: Vec<OrderBy>,
pub return_property_quota: bool,
pub minute_ranges: Vec<MinuteRange>,
}
Expand description
The request to generate a realtime report.
Fields§
§property: String
A Google Analytics GA4 property identifier whose events are tracked. Specified in the URL path and not the body. To learn more, see where to find your Property ID.
Example: properties/1234
dimensions: Vec<Dimension>
The dimensions requested and displayed.
metrics: Vec<Metric>
The metrics requested and displayed.
dimension_filter: Option<FilterExpression>
The filter clause of dimensions. Metrics cannot be used in this filter.
metric_filter: Option<FilterExpression>
The filter clause of metrics. Applied at post aggregation phase, similar to SQL having-clause. Dimensions cannot be used in this filter.
limit: i64
The number of rows to return. If unspecified, 10,000 rows are returned. The
API returns a maximum of 250,000 rows per request, no matter how many you
ask for. limit
must be positive.
The API can also return fewer rows than the requested limit
, if there
aren’t as many dimension values as the limit
. For instance, there are
fewer than 300 possible values for the dimension country
, so when
reporting on only country
, you can’t get more than 300 rows, even if you
set limit
to a higher value.
metric_aggregations: Vec<i32>
Aggregation of metrics. Aggregated metric values will be shown in rows where the dimension_values are set to “RESERVED_(MetricAggregation)”.
order_bys: Vec<OrderBy>
Specifies how rows are ordered in the response.
return_property_quota: bool
Toggles whether to return the current state of this Analytics Property’s Realtime quota. Quota is returned in PropertyQuota.
minute_ranges: Vec<MinuteRange>
The minute ranges of event data to read. If unspecified, one minute range for the last 30 minutes will be used. If multiple minute ranges are requested, each response row will contain a zero based minute range index. If two minute ranges overlap, the event data for the overlapping minutes is included in the response rows for both minute ranges.
Implementations§
source§impl RunRealtimeReportRequest
impl RunRealtimeReportRequest
sourcepub fn metric_aggregations(
&self,
) -> FilterMap<Cloned<Iter<'_, i32>>, fn(_: i32) -> Option<MetricAggregation>>
pub fn metric_aggregations( &self, ) -> FilterMap<Cloned<Iter<'_, i32>>, fn(_: i32) -> Option<MetricAggregation>>
Returns an iterator which yields the valid enum values contained in metric_aggregations
.
sourcepub fn push_metric_aggregations(&mut self, value: MetricAggregation)
pub fn push_metric_aggregations(&mut self, value: MetricAggregation)
Appends the provided enum value to metric_aggregations
.
Trait Implementations§
source§impl Clone for RunRealtimeReportRequest
impl Clone for RunRealtimeReportRequest
source§fn clone(&self) -> RunRealtimeReportRequest
fn clone(&self) -> RunRealtimeReportRequest
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for RunRealtimeReportRequest
impl Debug for RunRealtimeReportRequest
source§impl Default for RunRealtimeReportRequest
impl Default for RunRealtimeReportRequest
source§impl Message for RunRealtimeReportRequest
impl Message for RunRealtimeReportRequest
source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
. Read moresource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
.source§impl PartialEq for RunRealtimeReportRequest
impl PartialEq for RunRealtimeReportRequest
source§fn eq(&self, other: &RunRealtimeReportRequest) -> bool
fn eq(&self, other: &RunRealtimeReportRequest) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for RunRealtimeReportRequest
Auto Trait Implementations§
impl Freeze for RunRealtimeReportRequest
impl RefUnwindSafe for RunRealtimeReportRequest
impl Send for RunRealtimeReportRequest
impl Sync for RunRealtimeReportRequest
impl Unpin for RunRealtimeReportRequest
impl UnwindSafe for RunRealtimeReportRequest
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request