Class Dataset
A dataset represents a projection container for data points. They do not carry any info of their own. Datasets represent a set of data points from a particular data source. A data point can be found in more than one dataset.
Implements
Inherited Members
Namespace: Google.Apis.Fitness.v1.Data
Assembly: Google.Apis.Fitness.v1.dll
Syntax
public class Dataset : IDirectResponseSchema
Properties
DataSourceId
The data stream ID of the data source that created the points in this dataset.
Declaration
[JsonProperty("dataSourceId")]
public virtual string DataSourceId { get; set; }
Property Value
Type | Description |
---|---|
string |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
MaxEndTimeNs
The largest end time of all data points in this possibly partial representation of the dataset. Time is in nanoseconds from epoch. This should also match the second part of the dataset identifier.
Declaration
[JsonProperty("maxEndTimeNs")]
public virtual long? MaxEndTimeNs { get; set; }
Property Value
Type | Description |
---|---|
long? |
MinStartTimeNs
The smallest start time of all data points in this possibly partial representation of the dataset. Time is in nanoseconds from epoch. This should also match the first part of the dataset identifier.
Declaration
[JsonProperty("minStartTimeNs")]
public virtual long? MinStartTimeNs { get; set; }
Property Value
Type | Description |
---|---|
long? |
NextPageToken
This token will be set when a dataset is received in response to a GET request and the dataset is too large to be included in a single response. Provide this value in a subsequent GET request to return the next page of data points within this dataset.
Declaration
[JsonProperty("nextPageToken")]
public virtual string NextPageToken { get; set; }
Property Value
Type | Description |
---|---|
string |
Point
A partial list of data points contained in the dataset, ordered by endTimeNanos. This list is considered complete when retrieving a small dataset and partial when patching a dataset or retrieving a dataset that is too large to include in a single response.
Declaration
[JsonProperty("point")]
public virtual IList<DataPoint> Point { get; set; }
Property Value
Type | Description |
---|---|
IList<DataPoint> |