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