| Name | Type | Description | Notes |
|---|---|---|---|
| field_goals | TeamSeasonUnitStatsFieldGoals | ||
| two_point_field_goals | TeamSeasonUnitStatsFieldGoals | ||
| three_point_field_goals | TeamSeasonUnitStatsFieldGoals | ||
| free_throws | TeamSeasonUnitStatsFieldGoals | ||
| rebounds | TeamSeasonUnitStatsRebounds | ||
| turnovers | TeamSeasonUnitStatsTurnovers | ||
| fouls | TeamSeasonUnitStatsFouls | ||
| points | GameBoxScoreTeamStatsPoints | ||
| four_factors | TeamSeasonUnitStatsFourFactors | ||
| assists | float | ||
| blocks | float | ||
| steals | float | ||
| possessions | float | ||
| rating | float | ||
| true_shooting | float | ||
| game_score | float |
from cbbd.models.game_box_score_team_stats import GameBoxScoreTeamStats
# TODO update the JSON string below
json = "{}"
# create an instance of GameBoxScoreTeamStats from a JSON string
game_box_score_team_stats_instance = GameBoxScoreTeamStats.from_json(json)
# print the JSON string representation of the object
print GameBoxScoreTeamStats.to_json()
# convert the object into a dict
game_box_score_team_stats_dict = game_box_score_team_stats_instance.to_dict()
# create an instance of GameBoxScoreTeamStats from a dict
game_box_score_team_stats_from_dict = GameBoxScoreTeamStats.from_dict(game_box_score_team_stats_dict)