/** * Metabolic equivalent (MET) timeseries data represented by an array of numbers */ export type METSample = { /** * The number of seconds between records */ interval: number; /** * The recorded values */ items: Array; /** * ISO 8601 formatted local timestamp indicating the start datetime of when the data was collected */ timestamp: string; };