docs: update docs/dyn (#1096)

This PR was generated using Autosynth. :rainbow:

Synth log will be available here:
https://source.cloud.google.com/results/invocations/6f0f288a-a1e8-4b2d-a85f-00b1c6150185/targets

- [ ] To automatically regenerate this PR, check this box.

Source-Link: https://github.com/googleapis/synthtool/commit/39b7149da4026765385403632db3c6f63db96b2c
Source-Link: https://github.com/googleapis/synthtool/commit/9a7d9fbb7045c34c9d3d22c1ff766eeae51f04c9
Source-Link: https://github.com/googleapis/synthtool/commit/dc9903a8c30c3662b6098f0e4a97f221d67268b2
Source-Link: https://github.com/googleapis/synthtool/commit/7fcc405a579d5d53a726ff3da1b7c8c08f0f2d58
Source-Link: https://github.com/googleapis/synthtool/commit/d5fc0bcf9ea9789c5b0e3154a9e3b29e5cea6116
Source-Link: https://github.com/googleapis/synthtool/commit/e89175cf074dccc4babb4eca66ae913696e47a71
Source-Link: https://github.com/googleapis/synthtool/commit/7d652819519dfa24da9e14548232e4aaba71a11c
Source-Link: https://github.com/googleapis/synthtool/commit/7db8a6c5ffb12a6e4c2f799c18f00f7f3d60e279
Source-Link: https://github.com/googleapis/synthtool/commit/1f1148d3c7a7a52f0c98077f976bd9b3c948ee2b
Source-Link: https://github.com/googleapis/synthtool/commit/2c8aecedd55b0480fb4e123b6e07fa5b12953862
Source-Link: https://github.com/googleapis/synthtool/commit/3d3e94c4e02370f307a9a200b0c743c3d8d19f29
Source-Link: https://github.com/googleapis/synthtool/commit/c7824ea48ff6d4d42dfae0849aec8a85acd90bd9
Source-Link: https://github.com/googleapis/synthtool/commit/ba9918cd22874245b55734f57470c719b577e591
Source-Link: https://github.com/googleapis/synthtool/commit/b19b401571e77192f8dd38eab5fb2300a0de9324
Source-Link: https://github.com/googleapis/synthtool/commit/6542bd723403513626f61642fc02ddca528409aa
diff --git a/docs/dyn/fitness_v1.users.dataSources.html b/docs/dyn/fitness_v1.users.dataSources.html
index 78d66b5..36a479d 100644
--- a/docs/dyn/fitness_v1.users.dataSources.html
+++ b/docs/dyn/fitness_v1.users.dataSources.html
@@ -118,37 +118,37 @@
     The object takes the form of:
 
 { # Definition of a unique source of sensor data. Data sources can expose raw data coming from hardware sensors on local or companion devices. They can also expose derived data, created by transforming or merging other data sources. Multiple data sources can exist for the same data type. Every data point inserted into or read from this service has an associated data source. The data source contains enough information to uniquely identify its data, including the hardware device and the application that collected and/or transformed the data. It also holds useful metadata, such as the hardware and application versions, and the device type. Each data source produces a unique stream of data, with a unique identifier. Not all changes to data source affect the stream identifier, so that data collected by updated versions of the same application/device can still be considered to belong to the same data stream.
-  "application": { # Information about an application which feeds sensor data into the platform.
-    "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.
-    "detailsUrl": "A String", # An optional URI that can be used to link back to the application.
-    "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.
-  },
-  "name": "A String", # An end-user visible name for this data source.
-  "dataType": { # The data type defines the schema for a stream of data being collected by, inserted into, or queried from the Fitness API.
-    "name": "A String", # Each data type has a unique, namespaced, name. All data types in the com.google namespace are shared as part of the platform.
-    "field": [ # A field represents one dimension of a data type.
-      { # In case of multi-dimensional data (such as an accelerometer with x, y, and z axes) each field represents one dimension. Each data type field has a unique name which identifies it. The field also defines the format of the data (int, float, etc.). This message is only instantiated in code and not used for wire comms or stored in any way.
-        "format": "A String", # The different supported formats for each field in a data type.
-        "optional": True or False,
-        "name": "A String", # Defines the name and format of data. Unlike data type names, field names are not namespaced, and only need to be unique within the data type.
-      },
+    "dataStreamId": "A String", # A unique identifier for the data stream produced by this data source. The identifier includes: - The physical device's manufacturer, model, and serial number (UID). - The application's package name or name. Package name is used when the data source was created by an Android application. The developer project number is used when the data source was created by a REST client. - The data source's type. - The data source's stream name. Note that not all attributes of the data source are used as part of the stream identifier. In particular, the version of the hardware/the application isn't used. This allows us to preserve the same stream through version updates. This also means that two DataSource objects may represent the same data stream even if they're not equal. The exact format of the data stream ID created by an Android application is: type:dataType.name:application.packageName:device.manufacturer:device.model:device.uid:dataStreamName The exact format of the data stream ID created by a REST client is: type:dataType.name:developer project number:device.manufacturer:device.model:device.uid:dataStreamName When any of the optional fields that make up the data stream ID are absent, they will be omitted from the data stream ID. The minimum viable data stream ID would be: type:dataType.name:developer project number Finally, the developer project number and device UID are obfuscated when read by any REST or Android client that did not create the data source. Only the data source creator will see the developer project number in clear and normal form. This means a client will see a different set of data_stream_ids than another client with different credentials.
+    "application": { # Information about an application which feeds sensor data into the platform.
+      "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.
+      "detailsUrl": "A String", # An optional URI that can be used to link back to the application.
+      "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.
+      "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.
+    },
+    "name": "A String", # An end-user visible name for this data source.
+    "device": { # Representation of an integrated device (such as a phone or a wearable) that can hold sensors. Each sensor is exposed as a data source. The main purpose of the device information contained in this class is to identify the hardware of a particular data source. This can be useful in different ways, including: - Distinguishing two similar sensors on different devices (the step counter on two nexus 5 phones, for instance) - Display the source of data to the user (by using the device make / model) - Treat data differently depending on sensor type (accelerometers on a watch may give different patterns than those on a phone) - Build different analysis models for each device/version. # Representation of an integrated device (such as a phone or a wearable) that can hold sensors.
+      "manufacturer": "A String", # Manufacturer of the product/hardware.
+      "version": "A String", # Version string for the device hardware/software.
+      "type": "A String", # A constant representing the type of the device.
+      "uid": "A String", # The serial number or other unique ID for the hardware. This field is obfuscated when read by any REST or Android client that did not create the data source. Only the data source creator will see the uid field in clear and normal form. The obfuscation preserves equality; that is, given two IDs, if id1 == id2, obfuscated(id1) == obfuscated(id2).
+      "model": "A String", # End-user visible model name for the device.
+    },
+    "dataQualityStandard": [ # DO NOT POPULATE THIS FIELD. It is never populated in responses from the platform, and is ignored in queries. It will be removed in a future version entirely.
+      "A String",
     ],
-  },
-  "dataStreamId": "A String", # A unique identifier for the data stream produced by this data source. The identifier includes: - The physical device's manufacturer, model, and serial number (UID). - The application's package name or name. Package name is used when the data source was created by an Android application. The developer project number is used when the data source was created by a REST client. - The data source's type. - The data source's stream name. Note that not all attributes of the data source are used as part of the stream identifier. In particular, the version of the hardware/the application isn't used. This allows us to preserve the same stream through version updates. This also means that two DataSource objects may represent the same data stream even if they're not equal. The exact format of the data stream ID created by an Android application is: type:dataType.name:application.packageName:device.manufacturer:device.model:device.uid:dataStreamName The exact format of the data stream ID created by a REST client is: type:dataType.name:developer project number:device.manufacturer:device.model:device.uid:dataStreamName When any of the optional fields that make up the data stream ID are absent, they will be omitted from the data stream ID. The minimum viable data stream ID would be: type:dataType.name:developer project number Finally, the developer project number and device UID are obfuscated when read by any REST or Android client that did not create the data source. Only the data source creator will see the developer project number in clear and normal form. This means a client will see a different set of data_stream_ids than another client with different credentials.
-  "type": "A String", # A constant describing the type of this data source. Indicates whether this data source produces raw or derived data.
-  "dataStreamName": "A String", # The stream name uniquely identifies this particular data source among other data sources of the same type from the same underlying producer. Setting the stream name is optional, but should be done whenever an application exposes two streams for the same data type, or when a device has two equivalent sensors.
-  "device": { # Representation of an integrated device (such as a phone or a wearable) that can hold sensors. Each sensor is exposed as a data source. The main purpose of the device information contained in this class is to identify the hardware of a particular data source. This can be useful in different ways, including: - Distinguishing two similar sensors on different devices (the step counter on two nexus 5 phones, for instance) - Display the source of data to the user (by using the device make / model) - Treat data differently depending on sensor type (accelerometers on a watch may give different patterns than those on a phone) - Build different analysis models for each device/version. # Representation of an integrated device (such as a phone or a wearable) that can hold sensors.
-    "version": "A String", # Version string for the device hardware/software.
-    "type": "A String", # A constant representing the type of the device.
-    "manufacturer": "A String", # Manufacturer of the product/hardware.
-    "uid": "A String", # The serial number or other unique ID for the hardware. This field is obfuscated when read by any REST or Android client that did not create the data source. Only the data source creator will see the uid field in clear and normal form. The obfuscation preserves equality; that is, given two IDs, if id1 == id2, obfuscated(id1) == obfuscated(id2).
-    "model": "A String", # End-user visible model name for the device.
-  },
-  "dataQualityStandard": [ # DO NOT POPULATE THIS FIELD. It is never populated in responses from the platform, and is ignored in queries. It will be removed in a future version entirely.
-    "A String",
-  ],
-}
+    "dataType": { # The data type defines the schema for a stream of data being collected by, inserted into, or queried from the Fitness API.
+      "name": "A String", # Each data type has a unique, namespaced, name. All data types in the com.google namespace are shared as part of the platform.
+      "field": [ # A field represents one dimension of a data type.
+        { # In case of multi-dimensional data (such as an accelerometer with x, y, and z axes) each field represents one dimension. Each data type field has a unique name which identifies it. The field also defines the format of the data (int, float, etc.). This message is only instantiated in code and not used for wire comms or stored in any way.
+          "optional": True or False,
+          "name": "A String", # Defines the name and format of data. Unlike data type names, field names are not namespaced, and only need to be unique within the data type.
+          "format": "A String", # The different supported formats for each field in a data type.
+        },
+      ],
+    },
+    "type": "A String", # A constant describing the type of this data source. Indicates whether this data source produces raw or derived data.
+    "dataStreamName": "A String", # The stream name uniquely identifies this particular data source among other data sources of the same type from the same underlying producer. Setting the stream name is optional, but should be done whenever an application exposes two streams for the same data type, or when a device has two equivalent sensors.
+  }
 
   x__xgafv: string, V1 error format.
     Allowed values
@@ -159,37 +159,37 @@
   An object of the form:
 
     { # Definition of a unique source of sensor data. Data sources can expose raw data coming from hardware sensors on local or companion devices. They can also expose derived data, created by transforming or merging other data sources. Multiple data sources can exist for the same data type. Every data point inserted into or read from this service has an associated data source. The data source contains enough information to uniquely identify its data, including the hardware device and the application that collected and/or transformed the data. It also holds useful metadata, such as the hardware and application versions, and the device type. Each data source produces a unique stream of data, with a unique identifier. Not all changes to data source affect the stream identifier, so that data collected by updated versions of the same application/device can still be considered to belong to the same data stream.
-    "application": { # Information about an application which feeds sensor data into the platform.
-      "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.
-      "detailsUrl": "A String", # An optional URI that can be used to link back to the application.
-      "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.
-    },
-    "name": "A String", # An end-user visible name for this data source.
-    "dataType": { # The data type defines the schema for a stream of data being collected by, inserted into, or queried from the Fitness API.
-      "name": "A String", # Each data type has a unique, namespaced, name. All data types in the com.google namespace are shared as part of the platform.
-      "field": [ # A field represents one dimension of a data type.
-        { # In case of multi-dimensional data (such as an accelerometer with x, y, and z axes) each field represents one dimension. Each data type field has a unique name which identifies it. The field also defines the format of the data (int, float, etc.). This message is only instantiated in code and not used for wire comms or stored in any way.
-          "format": "A String", # The different supported formats for each field in a data type.
-          "optional": True or False,
-          "name": "A String", # Defines the name and format of data. Unlike data type names, field names are not namespaced, and only need to be unique within the data type.
-        },
+      "dataStreamId": "A String", # A unique identifier for the data stream produced by this data source. The identifier includes: - The physical device's manufacturer, model, and serial number (UID). - The application's package name or name. Package name is used when the data source was created by an Android application. The developer project number is used when the data source was created by a REST client. - The data source's type. - The data source's stream name. Note that not all attributes of the data source are used as part of the stream identifier. In particular, the version of the hardware/the application isn't used. This allows us to preserve the same stream through version updates. This also means that two DataSource objects may represent the same data stream even if they're not equal. The exact format of the data stream ID created by an Android application is: type:dataType.name:application.packageName:device.manufacturer:device.model:device.uid:dataStreamName The exact format of the data stream ID created by a REST client is: type:dataType.name:developer project number:device.manufacturer:device.model:device.uid:dataStreamName When any of the optional fields that make up the data stream ID are absent, they will be omitted from the data stream ID. The minimum viable data stream ID would be: type:dataType.name:developer project number Finally, the developer project number and device UID are obfuscated when read by any REST or Android client that did not create the data source. Only the data source creator will see the developer project number in clear and normal form. This means a client will see a different set of data_stream_ids than another client with different credentials.
+      "application": { # Information about an application which feeds sensor data into the platform.
+        "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.
+        "detailsUrl": "A String", # An optional URI that can be used to link back to the application.
+        "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.
+        "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.
+      },
+      "name": "A String", # An end-user visible name for this data source.
+      "device": { # Representation of an integrated device (such as a phone or a wearable) that can hold sensors. Each sensor is exposed as a data source. The main purpose of the device information contained in this class is to identify the hardware of a particular data source. This can be useful in different ways, including: - Distinguishing two similar sensors on different devices (the step counter on two nexus 5 phones, for instance) - Display the source of data to the user (by using the device make / model) - Treat data differently depending on sensor type (accelerometers on a watch may give different patterns than those on a phone) - Build different analysis models for each device/version. # Representation of an integrated device (such as a phone or a wearable) that can hold sensors.
+        "manufacturer": "A String", # Manufacturer of the product/hardware.
+        "version": "A String", # Version string for the device hardware/software.
+        "type": "A String", # A constant representing the type of the device.
+        "uid": "A String", # The serial number or other unique ID for the hardware. This field is obfuscated when read by any REST or Android client that did not create the data source. Only the data source creator will see the uid field in clear and normal form. The obfuscation preserves equality; that is, given two IDs, if id1 == id2, obfuscated(id1) == obfuscated(id2).
+        "model": "A String", # End-user visible model name for the device.
+      },
+      "dataQualityStandard": [ # DO NOT POPULATE THIS FIELD. It is never populated in responses from the platform, and is ignored in queries. It will be removed in a future version entirely.
+        "A String",
       ],
-    },
-    "dataStreamId": "A String", # A unique identifier for the data stream produced by this data source. The identifier includes: - The physical device's manufacturer, model, and serial number (UID). - The application's package name or name. Package name is used when the data source was created by an Android application. The developer project number is used when the data source was created by a REST client. - The data source's type. - The data source's stream name. Note that not all attributes of the data source are used as part of the stream identifier. In particular, the version of the hardware/the application isn't used. This allows us to preserve the same stream through version updates. This also means that two DataSource objects may represent the same data stream even if they're not equal. The exact format of the data stream ID created by an Android application is: type:dataType.name:application.packageName:device.manufacturer:device.model:device.uid:dataStreamName The exact format of the data stream ID created by a REST client is: type:dataType.name:developer project number:device.manufacturer:device.model:device.uid:dataStreamName When any of the optional fields that make up the data stream ID are absent, they will be omitted from the data stream ID. The minimum viable data stream ID would be: type:dataType.name:developer project number Finally, the developer project number and device UID are obfuscated when read by any REST or Android client that did not create the data source. Only the data source creator will see the developer project number in clear and normal form. This means a client will see a different set of data_stream_ids than another client with different credentials.
-    "type": "A String", # A constant describing the type of this data source. Indicates whether this data source produces raw or derived data.
-    "dataStreamName": "A String", # The stream name uniquely identifies this particular data source among other data sources of the same type from the same underlying producer. Setting the stream name is optional, but should be done whenever an application exposes two streams for the same data type, or when a device has two equivalent sensors.
-    "device": { # Representation of an integrated device (such as a phone or a wearable) that can hold sensors. Each sensor is exposed as a data source. The main purpose of the device information contained in this class is to identify the hardware of a particular data source. This can be useful in different ways, including: - Distinguishing two similar sensors on different devices (the step counter on two nexus 5 phones, for instance) - Display the source of data to the user (by using the device make / model) - Treat data differently depending on sensor type (accelerometers on a watch may give different patterns than those on a phone) - Build different analysis models for each device/version. # Representation of an integrated device (such as a phone or a wearable) that can hold sensors.
-      "version": "A String", # Version string for the device hardware/software.
-      "type": "A String", # A constant representing the type of the device.
-      "manufacturer": "A String", # Manufacturer of the product/hardware.
-      "uid": "A String", # The serial number or other unique ID for the hardware. This field is obfuscated when read by any REST or Android client that did not create the data source. Only the data source creator will see the uid field in clear and normal form. The obfuscation preserves equality; that is, given two IDs, if id1 == id2, obfuscated(id1) == obfuscated(id2).
-      "model": "A String", # End-user visible model name for the device.
-    },
-    "dataQualityStandard": [ # DO NOT POPULATE THIS FIELD. It is never populated in responses from the platform, and is ignored in queries. It will be removed in a future version entirely.
-      "A String",
-    ],
-  }</pre>
+      &quot;dataType&quot;: { # The data type defines the schema for a stream of data being collected by, inserted into, or queried from the Fitness API.
+        &quot;name&quot;: &quot;A String&quot;, # Each data type has a unique, namespaced, name. All data types in the com.google namespace are shared as part of the platform.
+        &quot;field&quot;: [ # A field represents one dimension of a data type.
+          { # In case of multi-dimensional data (such as an accelerometer with x, y, and z axes) each field represents one dimension. Each data type field has a unique name which identifies it. The field also defines the format of the data (int, float, etc.). This message is only instantiated in code and not used for wire comms or stored in any way.
+            &quot;optional&quot;: True or False,
+            &quot;name&quot;: &quot;A String&quot;, # Defines the name and format of data. Unlike data type names, field names are not namespaced, and only need to be unique within the data type.
+            &quot;format&quot;: &quot;A String&quot;, # The different supported formats for each field in a data type.
+          },
+        ],
+      },
+      &quot;type&quot;: &quot;A String&quot;, # A constant describing the type of this data source. Indicates whether this data source produces raw or derived data.
+      &quot;dataStreamName&quot;: &quot;A String&quot;, # The stream name uniquely identifies this particular data source among other data sources of the same type from the same underlying producer. Setting the stream name is optional, but should be done whenever an application exposes two streams for the same data type, or when a device has two equivalent sensors.
+    }</pre>
 </div>
 
 <div class="method">
@@ -208,37 +208,37 @@
   An object of the form:
 
     { # Definition of a unique source of sensor data. Data sources can expose raw data coming from hardware sensors on local or companion devices. They can also expose derived data, created by transforming or merging other data sources. Multiple data sources can exist for the same data type. Every data point inserted into or read from this service has an associated data source. The data source contains enough information to uniquely identify its data, including the hardware device and the application that collected and/or transformed the data. It also holds useful metadata, such as the hardware and application versions, and the device type. Each data source produces a unique stream of data, with a unique identifier. Not all changes to data source affect the stream identifier, so that data collected by updated versions of the same application/device can still be considered to belong to the same data stream.
-    &quot;application&quot;: { # Information about an application which feeds sensor data into the platform.
-      &quot;version&quot;: &quot;A String&quot;, # Version of the application. You should update this field whenever the application changes in a way that affects the computation of the data.
-      &quot;name&quot;: &quot;A String&quot;, # 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.
-      &quot;detailsUrl&quot;: &quot;A String&quot;, # An optional URI that can be used to link back to the application.
-      &quot;packageName&quot;: &quot;A String&quot;, # 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.
-    },
-    &quot;name&quot;: &quot;A String&quot;, # An end-user visible name for this data source.
-    &quot;dataType&quot;: { # The data type defines the schema for a stream of data being collected by, inserted into, or queried from the Fitness API.
-      &quot;name&quot;: &quot;A String&quot;, # Each data type has a unique, namespaced, name. All data types in the com.google namespace are shared as part of the platform.
-      &quot;field&quot;: [ # A field represents one dimension of a data type.
-        { # In case of multi-dimensional data (such as an accelerometer with x, y, and z axes) each field represents one dimension. Each data type field has a unique name which identifies it. The field also defines the format of the data (int, float, etc.). This message is only instantiated in code and not used for wire comms or stored in any way.
-          &quot;format&quot;: &quot;A String&quot;, # The different supported formats for each field in a data type.
-          &quot;optional&quot;: True or False,
-          &quot;name&quot;: &quot;A String&quot;, # Defines the name and format of data. Unlike data type names, field names are not namespaced, and only need to be unique within the data type.
-        },
+      &quot;dataStreamId&quot;: &quot;A String&quot;, # A unique identifier for the data stream produced by this data source. The identifier includes: - The physical device&#x27;s manufacturer, model, and serial number (UID). - The application&#x27;s package name or name. Package name is used when the data source was created by an Android application. The developer project number is used when the data source was created by a REST client. - The data source&#x27;s type. - The data source&#x27;s stream name. Note that not all attributes of the data source are used as part of the stream identifier. In particular, the version of the hardware/the application isn&#x27;t used. This allows us to preserve the same stream through version updates. This also means that two DataSource objects may represent the same data stream even if they&#x27;re not equal. The exact format of the data stream ID created by an Android application is: type:dataType.name:application.packageName:device.manufacturer:device.model:device.uid:dataStreamName The exact format of the data stream ID created by a REST client is: type:dataType.name:developer project number:device.manufacturer:device.model:device.uid:dataStreamName When any of the optional fields that make up the data stream ID are absent, they will be omitted from the data stream ID. The minimum viable data stream ID would be: type:dataType.name:developer project number Finally, the developer project number and device UID are obfuscated when read by any REST or Android client that did not create the data source. Only the data source creator will see the developer project number in clear and normal form. This means a client will see a different set of data_stream_ids than another client with different credentials.
+      &quot;application&quot;: { # Information about an application which feeds sensor data into the platform.
+        &quot;version&quot;: &quot;A String&quot;, # Version of the application. You should update this field whenever the application changes in a way that affects the computation of the data.
+        &quot;detailsUrl&quot;: &quot;A String&quot;, # An optional URI that can be used to link back to the application.
+        &quot;name&quot;: &quot;A String&quot;, # 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.
+        &quot;packageName&quot;: &quot;A String&quot;, # 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.
+      },
+      &quot;name&quot;: &quot;A String&quot;, # An end-user visible name for this data source.
+      &quot;device&quot;: { # Representation of an integrated device (such as a phone or a wearable) that can hold sensors. Each sensor is exposed as a data source. The main purpose of the device information contained in this class is to identify the hardware of a particular data source. This can be useful in different ways, including: - Distinguishing two similar sensors on different devices (the step counter on two nexus 5 phones, for instance) - Display the source of data to the user (by using the device make / model) - Treat data differently depending on sensor type (accelerometers on a watch may give different patterns than those on a phone) - Build different analysis models for each device/version. # Representation of an integrated device (such as a phone or a wearable) that can hold sensors.
+        &quot;manufacturer&quot;: &quot;A String&quot;, # Manufacturer of the product/hardware.
+        &quot;version&quot;: &quot;A String&quot;, # Version string for the device hardware/software.
+        &quot;type&quot;: &quot;A String&quot;, # A constant representing the type of the device.
+        &quot;uid&quot;: &quot;A String&quot;, # The serial number or other unique ID for the hardware. This field is obfuscated when read by any REST or Android client that did not create the data source. Only the data source creator will see the uid field in clear and normal form. The obfuscation preserves equality; that is, given two IDs, if id1 == id2, obfuscated(id1) == obfuscated(id2).
+        &quot;model&quot;: &quot;A String&quot;, # End-user visible model name for the device.
+      },
+      &quot;dataQualityStandard&quot;: [ # DO NOT POPULATE THIS FIELD. It is never populated in responses from the platform, and is ignored in queries. It will be removed in a future version entirely.
+        &quot;A String&quot;,
       ],
-    },
-    &quot;dataStreamId&quot;: &quot;A String&quot;, # A unique identifier for the data stream produced by this data source. The identifier includes: - The physical device&#x27;s manufacturer, model, and serial number (UID). - The application&#x27;s package name or name. Package name is used when the data source was created by an Android application. The developer project number is used when the data source was created by a REST client. - The data source&#x27;s type. - The data source&#x27;s stream name. Note that not all attributes of the data source are used as part of the stream identifier. In particular, the version of the hardware/the application isn&#x27;t used. This allows us to preserve the same stream through version updates. This also means that two DataSource objects may represent the same data stream even if they&#x27;re not equal. The exact format of the data stream ID created by an Android application is: type:dataType.name:application.packageName:device.manufacturer:device.model:device.uid:dataStreamName The exact format of the data stream ID created by a REST client is: type:dataType.name:developer project number:device.manufacturer:device.model:device.uid:dataStreamName When any of the optional fields that make up the data stream ID are absent, they will be omitted from the data stream ID. The minimum viable data stream ID would be: type:dataType.name:developer project number Finally, the developer project number and device UID are obfuscated when read by any REST or Android client that did not create the data source. Only the data source creator will see the developer project number in clear and normal form. This means a client will see a different set of data_stream_ids than another client with different credentials.
-    &quot;type&quot;: &quot;A String&quot;, # A constant describing the type of this data source. Indicates whether this data source produces raw or derived data.
-    &quot;dataStreamName&quot;: &quot;A String&quot;, # The stream name uniquely identifies this particular data source among other data sources of the same type from the same underlying producer. Setting the stream name is optional, but should be done whenever an application exposes two streams for the same data type, or when a device has two equivalent sensors.
-    &quot;device&quot;: { # Representation of an integrated device (such as a phone or a wearable) that can hold sensors. Each sensor is exposed as a data source. The main purpose of the device information contained in this class is to identify the hardware of a particular data source. This can be useful in different ways, including: - Distinguishing two similar sensors on different devices (the step counter on two nexus 5 phones, for instance) - Display the source of data to the user (by using the device make / model) - Treat data differently depending on sensor type (accelerometers on a watch may give different patterns than those on a phone) - Build different analysis models for each device/version. # Representation of an integrated device (such as a phone or a wearable) that can hold sensors.
-      &quot;version&quot;: &quot;A String&quot;, # Version string for the device hardware/software.
-      &quot;type&quot;: &quot;A String&quot;, # A constant representing the type of the device.
-      &quot;manufacturer&quot;: &quot;A String&quot;, # Manufacturer of the product/hardware.
-      &quot;uid&quot;: &quot;A String&quot;, # The serial number or other unique ID for the hardware. This field is obfuscated when read by any REST or Android client that did not create the data source. Only the data source creator will see the uid field in clear and normal form. The obfuscation preserves equality; that is, given two IDs, if id1 == id2, obfuscated(id1) == obfuscated(id2).
-      &quot;model&quot;: &quot;A String&quot;, # End-user visible model name for the device.
-    },
-    &quot;dataQualityStandard&quot;: [ # DO NOT POPULATE THIS FIELD. It is never populated in responses from the platform, and is ignored in queries. It will be removed in a future version entirely.
-      &quot;A String&quot;,
-    ],
-  }</pre>
+      &quot;dataType&quot;: { # The data type defines the schema for a stream of data being collected by, inserted into, or queried from the Fitness API.
+        &quot;name&quot;: &quot;A String&quot;, # Each data type has a unique, namespaced, name. All data types in the com.google namespace are shared as part of the platform.
+        &quot;field&quot;: [ # A field represents one dimension of a data type.
+          { # In case of multi-dimensional data (such as an accelerometer with x, y, and z axes) each field represents one dimension. Each data type field has a unique name which identifies it. The field also defines the format of the data (int, float, etc.). This message is only instantiated in code and not used for wire comms or stored in any way.
+            &quot;optional&quot;: True or False,
+            &quot;name&quot;: &quot;A String&quot;, # Defines the name and format of data. Unlike data type names, field names are not namespaced, and only need to be unique within the data type.
+            &quot;format&quot;: &quot;A String&quot;, # The different supported formats for each field in a data type.
+          },
+        ],
+      },
+      &quot;type&quot;: &quot;A String&quot;, # A constant describing the type of this data source. Indicates whether this data source produces raw or derived data.
+      &quot;dataStreamName&quot;: &quot;A String&quot;, # The stream name uniquely identifies this particular data source among other data sources of the same type from the same underlying producer. Setting the stream name is optional, but should be done whenever an application exposes two streams for the same data type, or when a device has two equivalent sensors.
+    }</pre>
 </div>
 
 <div class="method">
@@ -257,37 +257,37 @@
   An object of the form:
 
     { # Definition of a unique source of sensor data. Data sources can expose raw data coming from hardware sensors on local or companion devices. They can also expose derived data, created by transforming or merging other data sources. Multiple data sources can exist for the same data type. Every data point inserted into or read from this service has an associated data source. The data source contains enough information to uniquely identify its data, including the hardware device and the application that collected and/or transformed the data. It also holds useful metadata, such as the hardware and application versions, and the device type. Each data source produces a unique stream of data, with a unique identifier. Not all changes to data source affect the stream identifier, so that data collected by updated versions of the same application/device can still be considered to belong to the same data stream.
-    &quot;application&quot;: { # Information about an application which feeds sensor data into the platform.
-      &quot;version&quot;: &quot;A String&quot;, # Version of the application. You should update this field whenever the application changes in a way that affects the computation of the data.
-      &quot;name&quot;: &quot;A String&quot;, # 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.
-      &quot;detailsUrl&quot;: &quot;A String&quot;, # An optional URI that can be used to link back to the application.
-      &quot;packageName&quot;: &quot;A String&quot;, # 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.
-    },
-    &quot;name&quot;: &quot;A String&quot;, # An end-user visible name for this data source.
-    &quot;dataType&quot;: { # The data type defines the schema for a stream of data being collected by, inserted into, or queried from the Fitness API.
-      &quot;name&quot;: &quot;A String&quot;, # Each data type has a unique, namespaced, name. All data types in the com.google namespace are shared as part of the platform.
-      &quot;field&quot;: [ # A field represents one dimension of a data type.
-        { # In case of multi-dimensional data (such as an accelerometer with x, y, and z axes) each field represents one dimension. Each data type field has a unique name which identifies it. The field also defines the format of the data (int, float, etc.). This message is only instantiated in code and not used for wire comms or stored in any way.
-          &quot;format&quot;: &quot;A String&quot;, # The different supported formats for each field in a data type.
-          &quot;optional&quot;: True or False,
-          &quot;name&quot;: &quot;A String&quot;, # Defines the name and format of data. Unlike data type names, field names are not namespaced, and only need to be unique within the data type.
-        },
+      &quot;dataStreamId&quot;: &quot;A String&quot;, # A unique identifier for the data stream produced by this data source. The identifier includes: - The physical device&#x27;s manufacturer, model, and serial number (UID). - The application&#x27;s package name or name. Package name is used when the data source was created by an Android application. The developer project number is used when the data source was created by a REST client. - The data source&#x27;s type. - The data source&#x27;s stream name. Note that not all attributes of the data source are used as part of the stream identifier. In particular, the version of the hardware/the application isn&#x27;t used. This allows us to preserve the same stream through version updates. This also means that two DataSource objects may represent the same data stream even if they&#x27;re not equal. The exact format of the data stream ID created by an Android application is: type:dataType.name:application.packageName:device.manufacturer:device.model:device.uid:dataStreamName The exact format of the data stream ID created by a REST client is: type:dataType.name:developer project number:device.manufacturer:device.model:device.uid:dataStreamName When any of the optional fields that make up the data stream ID are absent, they will be omitted from the data stream ID. The minimum viable data stream ID would be: type:dataType.name:developer project number Finally, the developer project number and device UID are obfuscated when read by any REST or Android client that did not create the data source. Only the data source creator will see the developer project number in clear and normal form. This means a client will see a different set of data_stream_ids than another client with different credentials.
+      &quot;application&quot;: { # Information about an application which feeds sensor data into the platform.
+        &quot;version&quot;: &quot;A String&quot;, # Version of the application. You should update this field whenever the application changes in a way that affects the computation of the data.
+        &quot;detailsUrl&quot;: &quot;A String&quot;, # An optional URI that can be used to link back to the application.
+        &quot;name&quot;: &quot;A String&quot;, # 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.
+        &quot;packageName&quot;: &quot;A String&quot;, # 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.
+      },
+      &quot;name&quot;: &quot;A String&quot;, # An end-user visible name for this data source.
+      &quot;device&quot;: { # Representation of an integrated device (such as a phone or a wearable) that can hold sensors. Each sensor is exposed as a data source. The main purpose of the device information contained in this class is to identify the hardware of a particular data source. This can be useful in different ways, including: - Distinguishing two similar sensors on different devices (the step counter on two nexus 5 phones, for instance) - Display the source of data to the user (by using the device make / model) - Treat data differently depending on sensor type (accelerometers on a watch may give different patterns than those on a phone) - Build different analysis models for each device/version. # Representation of an integrated device (such as a phone or a wearable) that can hold sensors.
+        &quot;manufacturer&quot;: &quot;A String&quot;, # Manufacturer of the product/hardware.
+        &quot;version&quot;: &quot;A String&quot;, # Version string for the device hardware/software.
+        &quot;type&quot;: &quot;A String&quot;, # A constant representing the type of the device.
+        &quot;uid&quot;: &quot;A String&quot;, # The serial number or other unique ID for the hardware. This field is obfuscated when read by any REST or Android client that did not create the data source. Only the data source creator will see the uid field in clear and normal form. The obfuscation preserves equality; that is, given two IDs, if id1 == id2, obfuscated(id1) == obfuscated(id2).
+        &quot;model&quot;: &quot;A String&quot;, # End-user visible model name for the device.
+      },
+      &quot;dataQualityStandard&quot;: [ # DO NOT POPULATE THIS FIELD. It is never populated in responses from the platform, and is ignored in queries. It will be removed in a future version entirely.
+        &quot;A String&quot;,
       ],
-    },
-    &quot;dataStreamId&quot;: &quot;A String&quot;, # A unique identifier for the data stream produced by this data source. The identifier includes: - The physical device&#x27;s manufacturer, model, and serial number (UID). - The application&#x27;s package name or name. Package name is used when the data source was created by an Android application. The developer project number is used when the data source was created by a REST client. - The data source&#x27;s type. - The data source&#x27;s stream name. Note that not all attributes of the data source are used as part of the stream identifier. In particular, the version of the hardware/the application isn&#x27;t used. This allows us to preserve the same stream through version updates. This also means that two DataSource objects may represent the same data stream even if they&#x27;re not equal. The exact format of the data stream ID created by an Android application is: type:dataType.name:application.packageName:device.manufacturer:device.model:device.uid:dataStreamName The exact format of the data stream ID created by a REST client is: type:dataType.name:developer project number:device.manufacturer:device.model:device.uid:dataStreamName When any of the optional fields that make up the data stream ID are absent, they will be omitted from the data stream ID. The minimum viable data stream ID would be: type:dataType.name:developer project number Finally, the developer project number and device UID are obfuscated when read by any REST or Android client that did not create the data source. Only the data source creator will see the developer project number in clear and normal form. This means a client will see a different set of data_stream_ids than another client with different credentials.
-    &quot;type&quot;: &quot;A String&quot;, # A constant describing the type of this data source. Indicates whether this data source produces raw or derived data.
-    &quot;dataStreamName&quot;: &quot;A String&quot;, # The stream name uniquely identifies this particular data source among other data sources of the same type from the same underlying producer. Setting the stream name is optional, but should be done whenever an application exposes two streams for the same data type, or when a device has two equivalent sensors.
-    &quot;device&quot;: { # Representation of an integrated device (such as a phone or a wearable) that can hold sensors. Each sensor is exposed as a data source. The main purpose of the device information contained in this class is to identify the hardware of a particular data source. This can be useful in different ways, including: - Distinguishing two similar sensors on different devices (the step counter on two nexus 5 phones, for instance) - Display the source of data to the user (by using the device make / model) - Treat data differently depending on sensor type (accelerometers on a watch may give different patterns than those on a phone) - Build different analysis models for each device/version. # Representation of an integrated device (such as a phone or a wearable) that can hold sensors.
-      &quot;version&quot;: &quot;A String&quot;, # Version string for the device hardware/software.
-      &quot;type&quot;: &quot;A String&quot;, # A constant representing the type of the device.
-      &quot;manufacturer&quot;: &quot;A String&quot;, # Manufacturer of the product/hardware.
-      &quot;uid&quot;: &quot;A String&quot;, # The serial number or other unique ID for the hardware. This field is obfuscated when read by any REST or Android client that did not create the data source. Only the data source creator will see the uid field in clear and normal form. The obfuscation preserves equality; that is, given two IDs, if id1 == id2, obfuscated(id1) == obfuscated(id2).
-      &quot;model&quot;: &quot;A String&quot;, # End-user visible model name for the device.
-    },
-    &quot;dataQualityStandard&quot;: [ # DO NOT POPULATE THIS FIELD. It is never populated in responses from the platform, and is ignored in queries. It will be removed in a future version entirely.
-      &quot;A String&quot;,
-    ],
-  }</pre>
+      &quot;dataType&quot;: { # The data type defines the schema for a stream of data being collected by, inserted into, or queried from the Fitness API.
+        &quot;name&quot;: &quot;A String&quot;, # Each data type has a unique, namespaced, name. All data types in the com.google namespace are shared as part of the platform.
+        &quot;field&quot;: [ # A field represents one dimension of a data type.
+          { # In case of multi-dimensional data (such as an accelerometer with x, y, and z axes) each field represents one dimension. Each data type field has a unique name which identifies it. The field also defines the format of the data (int, float, etc.). This message is only instantiated in code and not used for wire comms or stored in any way.
+            &quot;optional&quot;: True or False,
+            &quot;name&quot;: &quot;A String&quot;, # Defines the name and format of data. Unlike data type names, field names are not namespaced, and only need to be unique within the data type.
+            &quot;format&quot;: &quot;A String&quot;, # The different supported formats for each field in a data type.
+          },
+        ],
+      },
+      &quot;type&quot;: &quot;A String&quot;, # A constant describing the type of this data source. Indicates whether this data source produces raw or derived data.
+      &quot;dataStreamName&quot;: &quot;A String&quot;, # The stream name uniquely identifies this particular data source among other data sources of the same type from the same underlying producer. Setting the stream name is optional, but should be done whenever an application exposes two streams for the same data type, or when a device has two equivalent sensors.
+    }</pre>
 </div>
 
 <div class="method">
@@ -308,37 +308,37 @@
     {
     &quot;dataSource&quot;: [ # A previously created data source.
       { # Definition of a unique source of sensor data. Data sources can expose raw data coming from hardware sensors on local or companion devices. They can also expose derived data, created by transforming or merging other data sources. Multiple data sources can exist for the same data type. Every data point inserted into or read from this service has an associated data source. The data source contains enough information to uniquely identify its data, including the hardware device and the application that collected and/or transformed the data. It also holds useful metadata, such as the hardware and application versions, and the device type. Each data source produces a unique stream of data, with a unique identifier. Not all changes to data source affect the stream identifier, so that data collected by updated versions of the same application/device can still be considered to belong to the same data stream.
-        &quot;application&quot;: { # Information about an application which feeds sensor data into the platform.
-          &quot;version&quot;: &quot;A String&quot;, # Version of the application. You should update this field whenever the application changes in a way that affects the computation of the data.
-          &quot;name&quot;: &quot;A String&quot;, # 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.
-          &quot;detailsUrl&quot;: &quot;A String&quot;, # An optional URI that can be used to link back to the application.
-          &quot;packageName&quot;: &quot;A String&quot;, # 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.
-        },
-        &quot;name&quot;: &quot;A String&quot;, # An end-user visible name for this data source.
-        &quot;dataType&quot;: { # The data type defines the schema for a stream of data being collected by, inserted into, or queried from the Fitness API.
-          &quot;name&quot;: &quot;A String&quot;, # Each data type has a unique, namespaced, name. All data types in the com.google namespace are shared as part of the platform.
-          &quot;field&quot;: [ # A field represents one dimension of a data type.
-            { # In case of multi-dimensional data (such as an accelerometer with x, y, and z axes) each field represents one dimension. Each data type field has a unique name which identifies it. The field also defines the format of the data (int, float, etc.). This message is only instantiated in code and not used for wire comms or stored in any way.
-              &quot;format&quot;: &quot;A String&quot;, # The different supported formats for each field in a data type.
-              &quot;optional&quot;: True or False,
-              &quot;name&quot;: &quot;A String&quot;, # Defines the name and format of data. Unlike data type names, field names are not namespaced, and only need to be unique within the data type.
-            },
+          &quot;dataStreamId&quot;: &quot;A String&quot;, # A unique identifier for the data stream produced by this data source. The identifier includes: - The physical device&#x27;s manufacturer, model, and serial number (UID). - The application&#x27;s package name or name. Package name is used when the data source was created by an Android application. The developer project number is used when the data source was created by a REST client. - The data source&#x27;s type. - The data source&#x27;s stream name. Note that not all attributes of the data source are used as part of the stream identifier. In particular, the version of the hardware/the application isn&#x27;t used. This allows us to preserve the same stream through version updates. This also means that two DataSource objects may represent the same data stream even if they&#x27;re not equal. The exact format of the data stream ID created by an Android application is: type:dataType.name:application.packageName:device.manufacturer:device.model:device.uid:dataStreamName The exact format of the data stream ID created by a REST client is: type:dataType.name:developer project number:device.manufacturer:device.model:device.uid:dataStreamName When any of the optional fields that make up the data stream ID are absent, they will be omitted from the data stream ID. The minimum viable data stream ID would be: type:dataType.name:developer project number Finally, the developer project number and device UID are obfuscated when read by any REST or Android client that did not create the data source. Only the data source creator will see the developer project number in clear and normal form. This means a client will see a different set of data_stream_ids than another client with different credentials.
+          &quot;application&quot;: { # Information about an application which feeds sensor data into the platform.
+            &quot;version&quot;: &quot;A String&quot;, # Version of the application. You should update this field whenever the application changes in a way that affects the computation of the data.
+            &quot;detailsUrl&quot;: &quot;A String&quot;, # An optional URI that can be used to link back to the application.
+            &quot;name&quot;: &quot;A String&quot;, # 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.
+            &quot;packageName&quot;: &quot;A String&quot;, # 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.
+          },
+          &quot;name&quot;: &quot;A String&quot;, # An end-user visible name for this data source.
+          &quot;device&quot;: { # Representation of an integrated device (such as a phone or a wearable) that can hold sensors. Each sensor is exposed as a data source. The main purpose of the device information contained in this class is to identify the hardware of a particular data source. This can be useful in different ways, including: - Distinguishing two similar sensors on different devices (the step counter on two nexus 5 phones, for instance) - Display the source of data to the user (by using the device make / model) - Treat data differently depending on sensor type (accelerometers on a watch may give different patterns than those on a phone) - Build different analysis models for each device/version. # Representation of an integrated device (such as a phone or a wearable) that can hold sensors.
+            &quot;manufacturer&quot;: &quot;A String&quot;, # Manufacturer of the product/hardware.
+            &quot;version&quot;: &quot;A String&quot;, # Version string for the device hardware/software.
+            &quot;type&quot;: &quot;A String&quot;, # A constant representing the type of the device.
+            &quot;uid&quot;: &quot;A String&quot;, # The serial number or other unique ID for the hardware. This field is obfuscated when read by any REST or Android client that did not create the data source. Only the data source creator will see the uid field in clear and normal form. The obfuscation preserves equality; that is, given two IDs, if id1 == id2, obfuscated(id1) == obfuscated(id2).
+            &quot;model&quot;: &quot;A String&quot;, # End-user visible model name for the device.
+          },
+          &quot;dataQualityStandard&quot;: [ # DO NOT POPULATE THIS FIELD. It is never populated in responses from the platform, and is ignored in queries. It will be removed in a future version entirely.
+            &quot;A String&quot;,
           ],
+          &quot;dataType&quot;: { # The data type defines the schema for a stream of data being collected by, inserted into, or queried from the Fitness API.
+            &quot;name&quot;: &quot;A String&quot;, # Each data type has a unique, namespaced, name. All data types in the com.google namespace are shared as part of the platform.
+            &quot;field&quot;: [ # A field represents one dimension of a data type.
+              { # In case of multi-dimensional data (such as an accelerometer with x, y, and z axes) each field represents one dimension. Each data type field has a unique name which identifies it. The field also defines the format of the data (int, float, etc.). This message is only instantiated in code and not used for wire comms or stored in any way.
+                &quot;optional&quot;: True or False,
+                &quot;name&quot;: &quot;A String&quot;, # Defines the name and format of data. Unlike data type names, field names are not namespaced, and only need to be unique within the data type.
+                &quot;format&quot;: &quot;A String&quot;, # The different supported formats for each field in a data type.
+              },
+            ],
+          },
+          &quot;type&quot;: &quot;A String&quot;, # A constant describing the type of this data source. Indicates whether this data source produces raw or derived data.
+          &quot;dataStreamName&quot;: &quot;A String&quot;, # The stream name uniquely identifies this particular data source among other data sources of the same type from the same underlying producer. Setting the stream name is optional, but should be done whenever an application exposes two streams for the same data type, or when a device has two equivalent sensors.
         },
-        &quot;dataStreamId&quot;: &quot;A String&quot;, # A unique identifier for the data stream produced by this data source. The identifier includes: - The physical device&#x27;s manufacturer, model, and serial number (UID). - The application&#x27;s package name or name. Package name is used when the data source was created by an Android application. The developer project number is used when the data source was created by a REST client. - The data source&#x27;s type. - The data source&#x27;s stream name. Note that not all attributes of the data source are used as part of the stream identifier. In particular, the version of the hardware/the application isn&#x27;t used. This allows us to preserve the same stream through version updates. This also means that two DataSource objects may represent the same data stream even if they&#x27;re not equal. The exact format of the data stream ID created by an Android application is: type:dataType.name:application.packageName:device.manufacturer:device.model:device.uid:dataStreamName The exact format of the data stream ID created by a REST client is: type:dataType.name:developer project number:device.manufacturer:device.model:device.uid:dataStreamName When any of the optional fields that make up the data stream ID are absent, they will be omitted from the data stream ID. The minimum viable data stream ID would be: type:dataType.name:developer project number Finally, the developer project number and device UID are obfuscated when read by any REST or Android client that did not create the data source. Only the data source creator will see the developer project number in clear and normal form. This means a client will see a different set of data_stream_ids than another client with different credentials.
-        &quot;type&quot;: &quot;A String&quot;, # A constant describing the type of this data source. Indicates whether this data source produces raw or derived data.
-        &quot;dataStreamName&quot;: &quot;A String&quot;, # The stream name uniquely identifies this particular data source among other data sources of the same type from the same underlying producer. Setting the stream name is optional, but should be done whenever an application exposes two streams for the same data type, or when a device has two equivalent sensors.
-        &quot;device&quot;: { # Representation of an integrated device (such as a phone or a wearable) that can hold sensors. Each sensor is exposed as a data source. The main purpose of the device information contained in this class is to identify the hardware of a particular data source. This can be useful in different ways, including: - Distinguishing two similar sensors on different devices (the step counter on two nexus 5 phones, for instance) - Display the source of data to the user (by using the device make / model) - Treat data differently depending on sensor type (accelerometers on a watch may give different patterns than those on a phone) - Build different analysis models for each device/version. # Representation of an integrated device (such as a phone or a wearable) that can hold sensors.
-          &quot;version&quot;: &quot;A String&quot;, # Version string for the device hardware/software.
-          &quot;type&quot;: &quot;A String&quot;, # A constant representing the type of the device.
-          &quot;manufacturer&quot;: &quot;A String&quot;, # Manufacturer of the product/hardware.
-          &quot;uid&quot;: &quot;A String&quot;, # The serial number or other unique ID for the hardware. This field is obfuscated when read by any REST or Android client that did not create the data source. Only the data source creator will see the uid field in clear and normal form. The obfuscation preserves equality; that is, given two IDs, if id1 == id2, obfuscated(id1) == obfuscated(id2).
-          &quot;model&quot;: &quot;A String&quot;, # End-user visible model name for the device.
-        },
-        &quot;dataQualityStandard&quot;: [ # DO NOT POPULATE THIS FIELD. It is never populated in responses from the platform, and is ignored in queries. It will be removed in a future version entirely.
-          &quot;A String&quot;,
-        ],
-      },
     ],
   }</pre>
 </div>
@@ -354,37 +354,37 @@
     The object takes the form of:
 
 { # Definition of a unique source of sensor data. Data sources can expose raw data coming from hardware sensors on local or companion devices. They can also expose derived data, created by transforming or merging other data sources. Multiple data sources can exist for the same data type. Every data point inserted into or read from this service has an associated data source. The data source contains enough information to uniquely identify its data, including the hardware device and the application that collected and/or transformed the data. It also holds useful metadata, such as the hardware and application versions, and the device type. Each data source produces a unique stream of data, with a unique identifier. Not all changes to data source affect the stream identifier, so that data collected by updated versions of the same application/device can still be considered to belong to the same data stream.
-  &quot;application&quot;: { # Information about an application which feeds sensor data into the platform.
-    &quot;version&quot;: &quot;A String&quot;, # Version of the application. You should update this field whenever the application changes in a way that affects the computation of the data.
-    &quot;name&quot;: &quot;A String&quot;, # 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.
-    &quot;detailsUrl&quot;: &quot;A String&quot;, # An optional URI that can be used to link back to the application.
-    &quot;packageName&quot;: &quot;A String&quot;, # 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.
-  },
-  &quot;name&quot;: &quot;A String&quot;, # An end-user visible name for this data source.
-  &quot;dataType&quot;: { # The data type defines the schema for a stream of data being collected by, inserted into, or queried from the Fitness API.
-    &quot;name&quot;: &quot;A String&quot;, # Each data type has a unique, namespaced, name. All data types in the com.google namespace are shared as part of the platform.
-    &quot;field&quot;: [ # A field represents one dimension of a data type.
-      { # In case of multi-dimensional data (such as an accelerometer with x, y, and z axes) each field represents one dimension. Each data type field has a unique name which identifies it. The field also defines the format of the data (int, float, etc.). This message is only instantiated in code and not used for wire comms or stored in any way.
-        &quot;format&quot;: &quot;A String&quot;, # The different supported formats for each field in a data type.
-        &quot;optional&quot;: True or False,
-        &quot;name&quot;: &quot;A String&quot;, # Defines the name and format of data. Unlike data type names, field names are not namespaced, and only need to be unique within the data type.
-      },
+    &quot;dataStreamId&quot;: &quot;A String&quot;, # A unique identifier for the data stream produced by this data source. The identifier includes: - The physical device&#x27;s manufacturer, model, and serial number (UID). - The application&#x27;s package name or name. Package name is used when the data source was created by an Android application. The developer project number is used when the data source was created by a REST client. - The data source&#x27;s type. - The data source&#x27;s stream name. Note that not all attributes of the data source are used as part of the stream identifier. In particular, the version of the hardware/the application isn&#x27;t used. This allows us to preserve the same stream through version updates. This also means that two DataSource objects may represent the same data stream even if they&#x27;re not equal. The exact format of the data stream ID created by an Android application is: type:dataType.name:application.packageName:device.manufacturer:device.model:device.uid:dataStreamName The exact format of the data stream ID created by a REST client is: type:dataType.name:developer project number:device.manufacturer:device.model:device.uid:dataStreamName When any of the optional fields that make up the data stream ID are absent, they will be omitted from the data stream ID. The minimum viable data stream ID would be: type:dataType.name:developer project number Finally, the developer project number and device UID are obfuscated when read by any REST or Android client that did not create the data source. Only the data source creator will see the developer project number in clear and normal form. This means a client will see a different set of data_stream_ids than another client with different credentials.
+    &quot;application&quot;: { # Information about an application which feeds sensor data into the platform.
+      &quot;version&quot;: &quot;A String&quot;, # Version of the application. You should update this field whenever the application changes in a way that affects the computation of the data.
+      &quot;detailsUrl&quot;: &quot;A String&quot;, # An optional URI that can be used to link back to the application.
+      &quot;name&quot;: &quot;A String&quot;, # 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.
+      &quot;packageName&quot;: &quot;A String&quot;, # 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.
+    },
+    &quot;name&quot;: &quot;A String&quot;, # An end-user visible name for this data source.
+    &quot;device&quot;: { # Representation of an integrated device (such as a phone or a wearable) that can hold sensors. Each sensor is exposed as a data source. The main purpose of the device information contained in this class is to identify the hardware of a particular data source. This can be useful in different ways, including: - Distinguishing two similar sensors on different devices (the step counter on two nexus 5 phones, for instance) - Display the source of data to the user (by using the device make / model) - Treat data differently depending on sensor type (accelerometers on a watch may give different patterns than those on a phone) - Build different analysis models for each device/version. # Representation of an integrated device (such as a phone or a wearable) that can hold sensors.
+      &quot;manufacturer&quot;: &quot;A String&quot;, # Manufacturer of the product/hardware.
+      &quot;version&quot;: &quot;A String&quot;, # Version string for the device hardware/software.
+      &quot;type&quot;: &quot;A String&quot;, # A constant representing the type of the device.
+      &quot;uid&quot;: &quot;A String&quot;, # The serial number or other unique ID for the hardware. This field is obfuscated when read by any REST or Android client that did not create the data source. Only the data source creator will see the uid field in clear and normal form. The obfuscation preserves equality; that is, given two IDs, if id1 == id2, obfuscated(id1) == obfuscated(id2).
+      &quot;model&quot;: &quot;A String&quot;, # End-user visible model name for the device.
+    },
+    &quot;dataQualityStandard&quot;: [ # DO NOT POPULATE THIS FIELD. It is never populated in responses from the platform, and is ignored in queries. It will be removed in a future version entirely.
+      &quot;A String&quot;,
     ],
-  },
-  &quot;dataStreamId&quot;: &quot;A String&quot;, # A unique identifier for the data stream produced by this data source. The identifier includes: - The physical device&#x27;s manufacturer, model, and serial number (UID). - The application&#x27;s package name or name. Package name is used when the data source was created by an Android application. The developer project number is used when the data source was created by a REST client. - The data source&#x27;s type. - The data source&#x27;s stream name. Note that not all attributes of the data source are used as part of the stream identifier. In particular, the version of the hardware/the application isn&#x27;t used. This allows us to preserve the same stream through version updates. This also means that two DataSource objects may represent the same data stream even if they&#x27;re not equal. The exact format of the data stream ID created by an Android application is: type:dataType.name:application.packageName:device.manufacturer:device.model:device.uid:dataStreamName The exact format of the data stream ID created by a REST client is: type:dataType.name:developer project number:device.manufacturer:device.model:device.uid:dataStreamName When any of the optional fields that make up the data stream ID are absent, they will be omitted from the data stream ID. The minimum viable data stream ID would be: type:dataType.name:developer project number Finally, the developer project number and device UID are obfuscated when read by any REST or Android client that did not create the data source. Only the data source creator will see the developer project number in clear and normal form. This means a client will see a different set of data_stream_ids than another client with different credentials.
-  &quot;type&quot;: &quot;A String&quot;, # A constant describing the type of this data source. Indicates whether this data source produces raw or derived data.
-  &quot;dataStreamName&quot;: &quot;A String&quot;, # The stream name uniquely identifies this particular data source among other data sources of the same type from the same underlying producer. Setting the stream name is optional, but should be done whenever an application exposes two streams for the same data type, or when a device has two equivalent sensors.
-  &quot;device&quot;: { # Representation of an integrated device (such as a phone or a wearable) that can hold sensors. Each sensor is exposed as a data source. The main purpose of the device information contained in this class is to identify the hardware of a particular data source. This can be useful in different ways, including: - Distinguishing two similar sensors on different devices (the step counter on two nexus 5 phones, for instance) - Display the source of data to the user (by using the device make / model) - Treat data differently depending on sensor type (accelerometers on a watch may give different patterns than those on a phone) - Build different analysis models for each device/version. # Representation of an integrated device (such as a phone or a wearable) that can hold sensors.
-    &quot;version&quot;: &quot;A String&quot;, # Version string for the device hardware/software.
-    &quot;type&quot;: &quot;A String&quot;, # A constant representing the type of the device.
-    &quot;manufacturer&quot;: &quot;A String&quot;, # Manufacturer of the product/hardware.
-    &quot;uid&quot;: &quot;A String&quot;, # The serial number or other unique ID for the hardware. This field is obfuscated when read by any REST or Android client that did not create the data source. Only the data source creator will see the uid field in clear and normal form. The obfuscation preserves equality; that is, given two IDs, if id1 == id2, obfuscated(id1) == obfuscated(id2).
-    &quot;model&quot;: &quot;A String&quot;, # End-user visible model name for the device.
-  },
-  &quot;dataQualityStandard&quot;: [ # DO NOT POPULATE THIS FIELD. It is never populated in responses from the platform, and is ignored in queries. It will be removed in a future version entirely.
-    &quot;A String&quot;,
-  ],
-}
+    &quot;dataType&quot;: { # The data type defines the schema for a stream of data being collected by, inserted into, or queried from the Fitness API.
+      &quot;name&quot;: &quot;A String&quot;, # Each data type has a unique, namespaced, name. All data types in the com.google namespace are shared as part of the platform.
+      &quot;field&quot;: [ # A field represents one dimension of a data type.
+        { # In case of multi-dimensional data (such as an accelerometer with x, y, and z axes) each field represents one dimension. Each data type field has a unique name which identifies it. The field also defines the format of the data (int, float, etc.). This message is only instantiated in code and not used for wire comms or stored in any way.
+          &quot;optional&quot;: True or False,
+          &quot;name&quot;: &quot;A String&quot;, # Defines the name and format of data. Unlike data type names, field names are not namespaced, and only need to be unique within the data type.
+          &quot;format&quot;: &quot;A String&quot;, # The different supported formats for each field in a data type.
+        },
+      ],
+    },
+    &quot;type&quot;: &quot;A String&quot;, # A constant describing the type of this data source. Indicates whether this data source produces raw or derived data.
+    &quot;dataStreamName&quot;: &quot;A String&quot;, # The stream name uniquely identifies this particular data source among other data sources of the same type from the same underlying producer. Setting the stream name is optional, but should be done whenever an application exposes two streams for the same data type, or when a device has two equivalent sensors.
+  }
 
   x__xgafv: string, V1 error format.
     Allowed values
@@ -395,37 +395,37 @@
   An object of the form:
 
     { # Definition of a unique source of sensor data. Data sources can expose raw data coming from hardware sensors on local or companion devices. They can also expose derived data, created by transforming or merging other data sources. Multiple data sources can exist for the same data type. Every data point inserted into or read from this service has an associated data source. The data source contains enough information to uniquely identify its data, including the hardware device and the application that collected and/or transformed the data. It also holds useful metadata, such as the hardware and application versions, and the device type. Each data source produces a unique stream of data, with a unique identifier. Not all changes to data source affect the stream identifier, so that data collected by updated versions of the same application/device can still be considered to belong to the same data stream.
-    &quot;application&quot;: { # Information about an application which feeds sensor data into the platform.
-      &quot;version&quot;: &quot;A String&quot;, # Version of the application. You should update this field whenever the application changes in a way that affects the computation of the data.
-      &quot;name&quot;: &quot;A String&quot;, # 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.
-      &quot;detailsUrl&quot;: &quot;A String&quot;, # An optional URI that can be used to link back to the application.
-      &quot;packageName&quot;: &quot;A String&quot;, # 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.
-    },
-    &quot;name&quot;: &quot;A String&quot;, # An end-user visible name for this data source.
-    &quot;dataType&quot;: { # The data type defines the schema for a stream of data being collected by, inserted into, or queried from the Fitness API.
-      &quot;name&quot;: &quot;A String&quot;, # Each data type has a unique, namespaced, name. All data types in the com.google namespace are shared as part of the platform.
-      &quot;field&quot;: [ # A field represents one dimension of a data type.
-        { # In case of multi-dimensional data (such as an accelerometer with x, y, and z axes) each field represents one dimension. Each data type field has a unique name which identifies it. The field also defines the format of the data (int, float, etc.). This message is only instantiated in code and not used for wire comms or stored in any way.
-          &quot;format&quot;: &quot;A String&quot;, # The different supported formats for each field in a data type.
-          &quot;optional&quot;: True or False,
-          &quot;name&quot;: &quot;A String&quot;, # Defines the name and format of data. Unlike data type names, field names are not namespaced, and only need to be unique within the data type.
-        },
+      &quot;dataStreamId&quot;: &quot;A String&quot;, # A unique identifier for the data stream produced by this data source. The identifier includes: - The physical device&#x27;s manufacturer, model, and serial number (UID). - The application&#x27;s package name or name. Package name is used when the data source was created by an Android application. The developer project number is used when the data source was created by a REST client. - The data source&#x27;s type. - The data source&#x27;s stream name. Note that not all attributes of the data source are used as part of the stream identifier. In particular, the version of the hardware/the application isn&#x27;t used. This allows us to preserve the same stream through version updates. This also means that two DataSource objects may represent the same data stream even if they&#x27;re not equal. The exact format of the data stream ID created by an Android application is: type:dataType.name:application.packageName:device.manufacturer:device.model:device.uid:dataStreamName The exact format of the data stream ID created by a REST client is: type:dataType.name:developer project number:device.manufacturer:device.model:device.uid:dataStreamName When any of the optional fields that make up the data stream ID are absent, they will be omitted from the data stream ID. The minimum viable data stream ID would be: type:dataType.name:developer project number Finally, the developer project number and device UID are obfuscated when read by any REST or Android client that did not create the data source. Only the data source creator will see the developer project number in clear and normal form. This means a client will see a different set of data_stream_ids than another client with different credentials.
+      &quot;application&quot;: { # Information about an application which feeds sensor data into the platform.
+        &quot;version&quot;: &quot;A String&quot;, # Version of the application. You should update this field whenever the application changes in a way that affects the computation of the data.
+        &quot;detailsUrl&quot;: &quot;A String&quot;, # An optional URI that can be used to link back to the application.
+        &quot;name&quot;: &quot;A String&quot;, # 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.
+        &quot;packageName&quot;: &quot;A String&quot;, # 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.
+      },
+      &quot;name&quot;: &quot;A String&quot;, # An end-user visible name for this data source.
+      &quot;device&quot;: { # Representation of an integrated device (such as a phone or a wearable) that can hold sensors. Each sensor is exposed as a data source. The main purpose of the device information contained in this class is to identify the hardware of a particular data source. This can be useful in different ways, including: - Distinguishing two similar sensors on different devices (the step counter on two nexus 5 phones, for instance) - Display the source of data to the user (by using the device make / model) - Treat data differently depending on sensor type (accelerometers on a watch may give different patterns than those on a phone) - Build different analysis models for each device/version. # Representation of an integrated device (such as a phone or a wearable) that can hold sensors.
+        &quot;manufacturer&quot;: &quot;A String&quot;, # Manufacturer of the product/hardware.
+        &quot;version&quot;: &quot;A String&quot;, # Version string for the device hardware/software.
+        &quot;type&quot;: &quot;A String&quot;, # A constant representing the type of the device.
+        &quot;uid&quot;: &quot;A String&quot;, # The serial number or other unique ID for the hardware. This field is obfuscated when read by any REST or Android client that did not create the data source. Only the data source creator will see the uid field in clear and normal form. The obfuscation preserves equality; that is, given two IDs, if id1 == id2, obfuscated(id1) == obfuscated(id2).
+        &quot;model&quot;: &quot;A String&quot;, # End-user visible model name for the device.
+      },
+      &quot;dataQualityStandard&quot;: [ # DO NOT POPULATE THIS FIELD. It is never populated in responses from the platform, and is ignored in queries. It will be removed in a future version entirely.
+        &quot;A String&quot;,
       ],
-    },
-    &quot;dataStreamId&quot;: &quot;A String&quot;, # A unique identifier for the data stream produced by this data source. The identifier includes: - The physical device&#x27;s manufacturer, model, and serial number (UID). - The application&#x27;s package name or name. Package name is used when the data source was created by an Android application. The developer project number is used when the data source was created by a REST client. - The data source&#x27;s type. - The data source&#x27;s stream name. Note that not all attributes of the data source are used as part of the stream identifier. In particular, the version of the hardware/the application isn&#x27;t used. This allows us to preserve the same stream through version updates. This also means that two DataSource objects may represent the same data stream even if they&#x27;re not equal. The exact format of the data stream ID created by an Android application is: type:dataType.name:application.packageName:device.manufacturer:device.model:device.uid:dataStreamName The exact format of the data stream ID created by a REST client is: type:dataType.name:developer project number:device.manufacturer:device.model:device.uid:dataStreamName When any of the optional fields that make up the data stream ID are absent, they will be omitted from the data stream ID. The minimum viable data stream ID would be: type:dataType.name:developer project number Finally, the developer project number and device UID are obfuscated when read by any REST or Android client that did not create the data source. Only the data source creator will see the developer project number in clear and normal form. This means a client will see a different set of data_stream_ids than another client with different credentials.
-    &quot;type&quot;: &quot;A String&quot;, # A constant describing the type of this data source. Indicates whether this data source produces raw or derived data.
-    &quot;dataStreamName&quot;: &quot;A String&quot;, # The stream name uniquely identifies this particular data source among other data sources of the same type from the same underlying producer. Setting the stream name is optional, but should be done whenever an application exposes two streams for the same data type, or when a device has two equivalent sensors.
-    &quot;device&quot;: { # Representation of an integrated device (such as a phone or a wearable) that can hold sensors. Each sensor is exposed as a data source. The main purpose of the device information contained in this class is to identify the hardware of a particular data source. This can be useful in different ways, including: - Distinguishing two similar sensors on different devices (the step counter on two nexus 5 phones, for instance) - Display the source of data to the user (by using the device make / model) - Treat data differently depending on sensor type (accelerometers on a watch may give different patterns than those on a phone) - Build different analysis models for each device/version. # Representation of an integrated device (such as a phone or a wearable) that can hold sensors.
-      &quot;version&quot;: &quot;A String&quot;, # Version string for the device hardware/software.
-      &quot;type&quot;: &quot;A String&quot;, # A constant representing the type of the device.
-      &quot;manufacturer&quot;: &quot;A String&quot;, # Manufacturer of the product/hardware.
-      &quot;uid&quot;: &quot;A String&quot;, # The serial number or other unique ID for the hardware. This field is obfuscated when read by any REST or Android client that did not create the data source. Only the data source creator will see the uid field in clear and normal form. The obfuscation preserves equality; that is, given two IDs, if id1 == id2, obfuscated(id1) == obfuscated(id2).
-      &quot;model&quot;: &quot;A String&quot;, # End-user visible model name for the device.
-    },
-    &quot;dataQualityStandard&quot;: [ # DO NOT POPULATE THIS FIELD. It is never populated in responses from the platform, and is ignored in queries. It will be removed in a future version entirely.
-      &quot;A String&quot;,
-    ],
-  }</pre>
+      &quot;dataType&quot;: { # The data type defines the schema for a stream of data being collected by, inserted into, or queried from the Fitness API.
+        &quot;name&quot;: &quot;A String&quot;, # Each data type has a unique, namespaced, name. All data types in the com.google namespace are shared as part of the platform.
+        &quot;field&quot;: [ # A field represents one dimension of a data type.
+          { # In case of multi-dimensional data (such as an accelerometer with x, y, and z axes) each field represents one dimension. Each data type field has a unique name which identifies it. The field also defines the format of the data (int, float, etc.). This message is only instantiated in code and not used for wire comms or stored in any way.
+            &quot;optional&quot;: True or False,
+            &quot;name&quot;: &quot;A String&quot;, # Defines the name and format of data. Unlike data type names, field names are not namespaced, and only need to be unique within the data type.
+            &quot;format&quot;: &quot;A String&quot;, # The different supported formats for each field in a data type.
+          },
+        ],
+      },
+      &quot;type&quot;: &quot;A String&quot;, # A constant describing the type of this data source. Indicates whether this data source produces raw or derived data.
+      &quot;dataStreamName&quot;: &quot;A String&quot;, # The stream name uniquely identifies this particular data source among other data sources of the same type from the same underlying producer. Setting the stream name is optional, but should be done whenever an application exposes two streams for the same data type, or when a device has two equivalent sensors.
+    }</pre>
 </div>
 
 </body></html>
\ No newline at end of file