Struct google_fitness1::ListDataPointChangesResponse[][src]

pub struct ListDataPointChangesResponse {
    pub next_page_token: Option<String>,
    pub deleted_data_point: Option<Vec<DataPoint>>,
    pub data_source_id: Option<String>,
    pub inserted_data_point: Option<Vec<DataPoint>>,
}

There is no detailed description.

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 continuation token, which is used to page through large result sets. Provide this value in a subsequent request to return the next page of results.

Deleted data points for the user. Note, for modifications this should be parsed before handling insertions.

The data stream ID of the data source with data point changes.

Inserted data points for the user.

Trait Implementations

impl Default for ListDataPointChangesResponse
[src]

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

impl Clone for ListDataPointChangesResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ListDataPointChangesResponse
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for ListDataPointChangesResponse
[src]

Auto Trait Implementations