Update documentation
diff --git a/docs/dyn/fitness_v1.users.dataset.html b/docs/dyn/fitness_v1.users.dataset.html
index fe29d0f..516222d 100644
--- a/docs/dyn/fitness_v1.users.dataset.html
+++ b/docs/dyn/fitness_v1.users.dataset.html
@@ -107,8 +107,16 @@
"minDurationMillis": "A String", # Specifies that only activity segments of duration longer than minDurationMillis are considered and used as a container for aggregated data.
},
"startTimeMillis": "A String", # 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.
+ "filteredDataQualityStandard": [ # 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.
+ "A String",
+ ],
"bucketByTime": { # Specifies that data be aggregated by a single time interval. Mutually exclusive of other bucketing specifications.
"durationMillis": "A String", # Specifies that result buckets aggregate data by exactly durationMillis time frames. Time frames that contain no data will be included in the response with an empty dataset.
+ "period": {
+ "timeZoneId": "A String", # org.joda.timezone.DateTimeZone
+ "type": "A String",
+ "value": 42,
+ },
},
}
@@ -169,7 +177,7 @@
"endTimeMillis": "A String", # An end time, in milliseconds since epoch, inclusive.
"description": "A String", # A description for this session.
"activityType": 42, # The type of activity this session represents.
- "application": { # See: google3/java/com/google/android/apps/heart/platform/api/Application.java # The application that created the session.
+ "application": { # The application that created the session.
"packageName": "A String", # Package name for this application. This is used as a unique identifier when created by Android applications, but cannot be specified by REST clients. REST clients will have their developer project number reflected into the Data Source data stream IDs, instead of the packageName.
"version": "A String", # Version of the application. You should update this field whenever the application changes in a way that affects the computation of the data.
"name": "A String", # The name of this application. This is required for REST clients, but we do not enforce uniqueness of this name. It is provided as a matter of convenience for other developers who would like to identify which REST created an Application or Data Source.