Class ListSessionsResponse
Implements
Inherited Members
Namespace: Google.Apis.Fitness.v1.Data
Assembly: Google.Apis.Fitness.v1.dll
Syntax
public class ListSessionsResponse : IDirectResponseSchema
Properties
DeletedSession
If includeDeleted is set to true in the request, and startTime and endTime are omitted, this will include sessions which were deleted since the last sync.
Declaration
[JsonProperty("deletedSession")]
public virtual IList<Session> DeletedSession { get; set; }
Property Value
Type | Description |
---|---|
IList<Session> |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
HasMoreData
Flag to indicate server has more data to transfer. DO NOT USE THIS FIELD. It is never populated in responses from the server.
Declaration
[JsonProperty("hasMoreData")]
public virtual bool? HasMoreData { get; set; }
Property Value
Type | Description |
---|---|
bool? |
NextPageToken
The sync token which is used to sync further changes. This will only be provided if both startTime and endTime are omitted from the request.
Declaration
[JsonProperty("nextPageToken")]
public virtual string NextPageToken { get; set; }
Property Value
Type | Description |
---|---|
string |
Session
Sessions with an end time that is between startTime and endTime of the request.
Declaration
[JsonProperty("session")]
public virtual IList<Session> Session { get; set; }
Property Value
Type | Description |
---|---|
IList<Session> |