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" )