forked from dwj300/strava
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmodel_split.go
27 lines (25 loc) · 833 Bytes
/
model_split.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
* Strava API v3
*
* Strava API
*
* API version: 3.0.0
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
*/
package strava
type Split struct {
// The average speed of this split, in meters per second
AverageSpeed float32 `json:"average_speed,omitempty"`
// The distance of this split, in meters
Distance float32 `json:"distance,omitempty"`
// The elapsed time of this split, in seconds
ElapsedTime int32 `json:"elapsed_time,omitempty"`
// The elevation difference of this split, in meters
ElevationDifference float32 `json:"elevation_difference,omitempty"`
// The pacing zone of this split
PaceZone int32 `json:"pace_zone,omitempty"`
// The moving time of this split, in seconds
MovingTime int32 `json:"moving_time,omitempty"`
// N/A
Split int32 `json:"split,omitempty"`
}