Struct google_analyticsreporting4::ReportData[][src]

pub struct ReportData {
    pub rows: Option<Vec<ReportRow>>,
    pub maximums: Option<Vec<DateRangeValues>>,
    pub minimums: Option<Vec<DateRangeValues>>,
    pub is_data_golden: Option<bool>,
    pub sampling_space_sizes: Option<Vec<String>>,
    pub totals: Option<Vec<DateRangeValues>>,
    pub row_count: Option<i32>,
    pub data_last_refreshed: Option<String>,
    pub samples_read_counts: Option<Vec<i64>>,
}

The data part of the report.

This type is not used in any activity, and only used as part of another schema.

Fields

There's one ReportRow for every unique combination of dimensions.

Minimum and maximum values seen over all matching rows. These are both empty when hideValueRanges in the request is false, or when rowCount is zero.

Minimum and maximum values seen over all matching rows. These are both empty when hideValueRanges in the request is false, or when rowCount is zero.

Indicates if response to this request is golden or not. Data is golden when the exact same request will not produce any new results if asked at a later point in time.

If the results are sampled, this returns the total number of samples present, one entry per date range. If the results are not sampled this field will not be defined. See developer guide for details.

For each requested date range, for the set of all rows that match the query, every requested value format gets a total. The total for a value format is computed by first totaling the metrics mentioned in the value format and then evaluating the value format as a scalar expression. E.g., The "totals" for 3 / (ga:sessions + 2) we compute 3 / ((sum of all relevant ga:sessions) + 2). Totals are computed before pagination.

Total number of matching rows for this query.

The last time the data in the report was refreshed. All the hits received before this timestamp are included in the calculation of the report.

If the results are sampled, this returns the total number of samples read, one entry per date range. If the results are not sampled this field will not be defined. See developer guide for details.

Trait Implementations

impl Default for ReportData
[src]

Returns the "default value" for a type. Read more

impl Clone for ReportData
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ReportData
[src]

Formats the value using the given formatter. Read more

impl Part for ReportData
[src]

Auto Trait Implementations

impl Send for ReportData

impl Sync for ReportData