Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.28 KB

SeasonShootingStatsAttemptsBreakdown.md

File metadata and controls

32 lines (24 loc) · 1.28 KB

SeasonShootingStatsAttemptsBreakdown

Properties

Name Type Description Notes
three_point_jumpers float
two_point_jumpers float
tip_ins float
layups float
dunks float

Example

from cbbd.models.season_shooting_stats_attempts_breakdown import SeasonShootingStatsAttemptsBreakdown

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

# convert the object into a dict
season_shooting_stats_attempts_breakdown_dict = season_shooting_stats_attempts_breakdown_instance.to_dict()
# create an instance of SeasonShootingStatsAttemptsBreakdown from a dict
season_shooting_stats_attempts_breakdown_from_dict = SeasonShootingStatsAttemptsBreakdown.from_dict(season_shooting_stats_attempts_breakdown_dict)

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