sorare/types/statcategory.go

16 lines
623 B
Go
Raw Normal View History

2024-03-08 10:48:21 +00:00
package types
type StatCategory string
const (
StatCategoryAttacking StatCategory = "ATTACKING"
StatCategoryDefending StatCategory = "DEFENDING"
StatCategoryGeneral StatCategory = "GENERAL"
StatCategoryGoalkeeping StatCategory = "GOALKEEPING"
StatCategoryNegativeDecisiveStat StatCategory = "NEGATIVE_DECISIVE_STAT"
StatCategoryPositiveDecisiveStat StatCategory = "POSITIVE_DECISIVE_STAT"
StatCategoryPassing StatCategory = "PASSING"
StatCategoryPossession StatCategory = "POSSESSION"
StatCategoryUnknown StatCategory = "UNKNOWN"
)