mirror of
https://github.com/sstent/go-garth-cli.git
synced 2025-12-06 08:02:01 +00:00
53 lines
1.4 KiB
Go
53 lines
1.4 KiB
Go
package connect
|
|
|
|
// Everything from https://connect.garmin.com/modern/proxy/badge-service/badge/attributes
|
|
|
|
type BadgeType struct {
|
|
ID int `json:"badgeTypeId"`
|
|
Key string `json:"badgeTypeKey"`
|
|
}
|
|
|
|
type BadgeCategory struct {
|
|
ID int `json:"badgeCategoryId"`
|
|
Key string `json:"badgeCategoryKey"`
|
|
}
|
|
|
|
type BadgeDifficulty struct {
|
|
ID int `json:"badgeDifficultyId"`
|
|
Key string `json:"badgeDifficultyKey"`
|
|
Points int `json:"badgePoints"`
|
|
}
|
|
|
|
type BadgeUnit struct {
|
|
ID int `json:"badgeUnitId"`
|
|
Key string `json:"badgeUnitKey"`
|
|
}
|
|
|
|
type BadgeAssocType struct {
|
|
ID int `json:"badgeAssocTypeId"`
|
|
Key string `json:"badgeAssocTypeKey"`
|
|
}
|
|
|
|
type BadgeAttributes struct {
|
|
BadgeTypes []BadgeType `json:"badgeTypes"`
|
|
BadgeCategories []BadgeCategory `json:"badgeCategories"`
|
|
BadgeDifficulties []BadgeDifficulty `json:"badgeDifficulties"`
|
|
BadgeUnits []BadgeUnit `json:"badgeUnits"`
|
|
BadgeAssocTypes []BadgeAssocType `json:"badgeAssocTypes"`
|
|
}
|
|
|
|
// BadgeAttributes retrieves a list of badge attributes. At time of writing
|
|
// we're not sure how these can be utilized.
|
|
func (c *Client) BadgeAttributes() (*BadgeAttributes, error) {
|
|
URL := "https://connect.garmin.com/modern/proxy/badge-service/badge/attributes"
|
|
|
|
attributes := new(BadgeAttributes)
|
|
|
|
err := c.getJSON(URL, &attributes)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return attributes, nil
|
|
}
|