Struct google_fitness1::AggregateRequest[][src]

pub struct AggregateRequest {
    pub aggregate_by: Option<Vec<AggregateBy>>,
    pub bucket_by_activity_segment: Option<BucketByActivity>,
    pub end_time_millis: Option<String>,
    pub bucket_by_session: Option<BucketBySession>,
    pub bucket_by_activity_type: Option<BucketByActivity>,
    pub start_time_millis: Option<String>,
    pub filtered_data_quality_standard: Option<Vec<String>>,
    pub bucket_by_time: Option<BucketByTime>,
}

Next id: 10

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

The specification of data to be aggregated. At least one aggregateBy spec must be provided. All data that is specified will be aggregated using the same bucketing criteria. There will be one dataset in the response for every aggregateBy spec.

Specifies that data be aggregated each activity segment recored for a user. Similar to bucketByActivitySegment, but bucketing is done for each activity segment rather than all segments of the same type. Mutually exclusive of other bucketing specifications.

The end of a window of time. Data that intersects with this time window will be aggregated. The time is in milliseconds since epoch, inclusive.

Specifies that data be aggregated by user sessions. Data that does not fall within the time range of a session will not be included in the response. Mutually exclusive of other bucketing specifications.

Specifies that data be aggregated by the type of activity being performed when the data was recorded. All data that was recorded during a certain activity type (for the given time range) will be aggregated into the same bucket. Data that was recorded while the user was not active will not be included in the response. Mutually exclusive of other bucketing specifications.

The start of a window of time. Data that intersects with this time window will be aggregated. The time is in milliseconds since epoch, inclusive.

A list of acceptable data quality standards. Only data points which conform to at least one of the specified data quality standards will be returned. If the list is empty, all data points are returned.

Specifies that data be aggregated by a single time interval. Mutually exclusive of other bucketing specifications.

Trait Implementations

impl Default for AggregateRequest
[src]

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

impl Clone for AggregateRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for AggregateRequest
[src]

Formats the value using the given formatter. Read more

impl RequestValue for AggregateRequest
[src]

Auto Trait Implementations