Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.09 KB

TeamSeasonUnitStatsRebounds.md

File metadata and controls

30 lines (22 loc) · 1.09 KB

TeamSeasonUnitStatsRebounds

Properties

Name Type Description Notes
total float
defensive float
offensive float

Example

from cbbd.models.team_season_unit_stats_rebounds import TeamSeasonUnitStatsRebounds

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

# convert the object into a dict
team_season_unit_stats_rebounds_dict = team_season_unit_stats_rebounds_instance.to_dict()
# create an instance of TeamSeasonUnitStatsRebounds from a dict
team_season_unit_stats_rebounds_from_dict = TeamSeasonUnitStatsRebounds.from_dict(team_season_unit_stats_rebounds_dict)

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