Skip to content

Latest commit

 

History

History
39 lines (31 loc) · 1.27 KB

TeamSeasonStats.md

File metadata and controls

39 lines (31 loc) · 1.27 KB

TeamSeasonStats

Properties

Name Type Description Notes
season int
season_label str
team_id int
team str
conference str
games int
wins float
losses float
total_minutes float
pace float
team_stats TeamSeasonUnitStats
opponent_stats TeamSeasonUnitStats

Example

from cbbd.models.team_season_stats import TeamSeasonStats

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

# convert the object into a dict
team_season_stats_dict = team_season_stats_instance.to_dict()
# create an instance of TeamSeasonStats from a dict
team_season_stats_from_dict = TeamSeasonStats.from_dict(team_season_stats_dict)

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