Class Value
Holder object for the value of a single field in a data point. A field value has a particular format and is only ever set to one of an integer or a floating point value.
Implements
Inherited Members
Namespace: Google.Apis.Fitness.v1.Data
Assembly: Google.Apis.Fitness.v1.dll
Syntax
public class Value : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
FpVal
Floating point value. When this is set, other values must not be set.
Declaration
[JsonProperty("fpVal")]
public virtual double? FpVal { get; set; }
Property Value
Type | Description |
---|---|
double? |
IntVal
Integer value. When this is set, other values must not be set.
Declaration
[JsonProperty("intVal")]
public virtual int? IntVal { get; set; }
Property Value
Type | Description |
---|---|
int? |
MapVal
Map value. The valid key space and units for the corresponding value of each entry should be documented as part of the data type definition. Keys should be kept small whenever possible. Data streams with large keys and high data frequency may be down sampled.
Declaration
[JsonProperty("mapVal")]
public virtual IList<ValueMapValEntry> MapVal { get; set; }
Property Value
Type | Description |
---|---|
IList<ValueMapValEntry> |
StringVal
String value. When this is set, other values must not be set. Strings should be kept small whenever possible. Data streams with large string values and high data frequency may be down sampled.
Declaration
[JsonProperty("stringVal")]
public virtual string StringVal { get; set; }
Property Value
Type | Description |
---|---|
string |