Struct google_analyticsdata1_beta::api::Row
source · pub struct Row {
pub dimension_values: Option<Vec<DimensionValue>>,
pub metric_values: Option<Vec<MetricValue>>,
}Expand description
Report data for each row. For example if RunReportRequest contains: none "dimensions": [ { "name": "eventName" }, { "name": "countryId" } ], "metrics": [ { "name": "eventCount" } ] One row with ‘in_app_purchase’ as the eventName, ‘JP’ as the countryId, and 15 as the eventCount, would be: none "dimensionValues": [ { "value": "in_app_purchase" }, { "value": "JP" } ], "metricValues": [ { "value": "15" } ]
This type is not used in any activity, and only used as part of another schema.
Fields§
§dimension_values: Option<Vec<DimensionValue>>List of requested dimension values. In a PivotReport, dimension_values are only listed for dimensions included in a pivot.
metric_values: Option<Vec<MetricValue>>List of requested visible metric values.
Trait Implementations§
source§impl<'de> Deserialize<'de> for Row
impl<'de> Deserialize<'de> for Row
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