Skip to content

Latest commit

 

History

History
39 lines (31 loc) · 1.57 KB

SeasonShootingStats.md

File metadata and controls

39 lines (31 loc) · 1.57 KB

SeasonShootingStats

Properties

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

Example

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)

[Back to Model list] [Back to API list] [Back to README]