Loggest thine Stuff
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

14 lines
408 B

package models
type StatUpdate struct {
Name *string `json:"name"`
Weight *float64 `json:"weight"`
Primary *bool `json:"primary"`
Description *string `json:"description"`
AllowedAmounts []StatAllowedAmount `json:"allowedAmounts"`
}
type StatAllowedAmount struct {
Label string `json:"label"`
Value int `json:"value"`
}