mirror of
https://github.com/sstent/go-garth.git
synced 2026-04-03 23:02:47 +00:00
porting - part2 wk2 done
This commit is contained in:
21
garth/stats/hrv.go
Normal file
21
garth/stats/hrv.go
Normal file
@@ -0,0 +1,21 @@
|
||||
package stats
|
||||
|
||||
import "time"
|
||||
|
||||
const BASE_HRV_PATH = "/usersummary-service/stats/hrv"
|
||||
|
||||
type DailyHRV struct {
|
||||
CalendarDate time.Time `json:"calendar_date"`
|
||||
RestingHR *int `json:"resting_hr"`
|
||||
HRV *int `json:"hrv"`
|
||||
BaseStats
|
||||
}
|
||||
|
||||
func NewDailyHRV() *DailyHRV {
|
||||
return &DailyHRV{
|
||||
BaseStats: BaseStats{
|
||||
Path: BASE_HRV_PATH + "/daily/{start}/{end}",
|
||||
PageSize: 28,
|
||||
},
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user