| Name | Type | Description | Notes |
|---|---|---|---|
| season | int | ||
| team_id | int | ||
| team | str | ||
| conference | str | ||
| tracked_shots | int | ||
| assisted_pct | float | ||
| free_throw_rate | float | ||
| dunks | SeasonShootingStatsDunks | ||
| layups | SeasonShootingStatsDunks | ||
| tip_ins | ShotTypeBreakdown | ||
| two_point_jumpers | SeasonShootingStatsDunks | ||
| three_point_jumpers | SeasonShootingStatsDunks | ||
| free_throws | ShotTypeBreakdown | ||
| attempts_breakdown | SeasonShootingStatsAttemptsBreakdown | ||
| athlete_id | int | ||
| athlete_name | str |
from cbbd.models.player_season_shooting_stats import PlayerSeasonShootingStats
# TODO update the JSON string below
json = "{}"
# create an instance of PlayerSeasonShootingStats from a JSON string
player_season_shooting_stats_instance = PlayerSeasonShootingStats.from_json(json)
# print the JSON string representation of the object
print PlayerSeasonShootingStats.to_json()
# convert the object into a dict
player_season_shooting_stats_dict = player_season_shooting_stats_instance.to_dict()
# create an instance of PlayerSeasonShootingStats from a dict
player_season_shooting_stats_from_dict = PlayerSeasonShootingStats.from_dict(player_season_shooting_stats_dict)