Record Types
Flutter ==> Core module
The Record
class and its subclasses will look almost exactly like the models you receive from the Inform APIs.
The main Validic Record class in the Inform SDK is InformRecord
- all record classes inherit from this class. The subclasses are:
InformMeasurement
: provides point in time measurements, like height, weight, blood pressure, glucose, etc. It replaces v1'sDiabetes
,Biometrics
, andWeight
.InformNutrition
: provides a summary of your daily nutritional intake. It replaces v1'sNutrition
.InformSleep
: provides a record of your sweet, sweet dreams. It replaces v1'sSleep
.InformSummary
: provides a summary of your daily activity, like steps, calories and heart rate. It replaces v1'sRoutine
.InformWorkout
: provides a list of all workout events. It replaces v1'sFitness
.
Updated 1 day ago