Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.1 KB

File metadata and controls

31 lines (23 loc) · 1.1 KB

TeamSeasonUnitStatsPoints

Properties

Name Type Description Notes
fast_break float
off_turnovers float
in_paint float
total float

Example

from cbbd.models.team_season_unit_stats_points import TeamSeasonUnitStatsPoints

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

# convert the object into a dict
team_season_unit_stats_points_dict = team_season_unit_stats_points_instance.to_dict()
# create an instance of TeamSeasonUnitStatsPoints from a dict
team_season_unit_stats_points_from_dict = TeamSeasonUnitStatsPoints.from_dict(team_season_unit_stats_points_dict)

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