Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.1 KB

SeasonShootingStatsDunks.md

File metadata and controls

32 lines (24 loc) · 1.1 KB

SeasonShootingStatsDunks

Properties

Name Type Description Notes
made int
attempted int
pct float
assisted_pct float
assisted int

Example

from cbbd.models.season_shooting_stats_dunks import SeasonShootingStatsDunks

# TODO update the JSON string below
json = "{}"
# create an instance of SeasonShootingStatsDunks from a JSON string
season_shooting_stats_dunks_instance = SeasonShootingStatsDunks.from_json(json)
# print the JSON string representation of the object
print SeasonShootingStatsDunks.to_json()

# convert the object into a dict
season_shooting_stats_dunks_dict = season_shooting_stats_dunks_instance.to_dict()
# create an instance of SeasonShootingStatsDunks from a dict
season_shooting_stats_dunks_from_dict = SeasonShootingStatsDunks.from_dict(season_shooting_stats_dunks_dict)

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