export interface RecordData { deviceDataId: string; /** Maps the current record's properties to its corresponding data. For example, * for the DataCollection data model, record may have the following structure: * * { * * "MeanIcp": { * value: 30, * valueProvidedOn: ..., * }, * "BloodPressure": { * value: "120/80", * ... * } * } */ record: Map; } /** * The data of a record, as retrieved by Galen */ export interface Record { value: any; valueProvidedOn: string; link: any; reference: any; }