Name | Type | Description | Notes |
---|---|---|---|
year | int | ||
team_id | int | ||
team | str | ||
classification | DivisionClassification | ||
conference | str | ||
division | str | ||
expected_wins | float | ||
total | TeamRecord | ||
conference_games | TeamRecord | ||
home_games | TeamRecord | ||
away_games | TeamRecord | ||
neutral_site_games | TeamRecord | ||
regular_season | TeamRecord | ||
postseason | TeamRecord |
from cfbd.models.team_records import TeamRecords
# TODO update the JSON string below
json = "{}"
# create an instance of TeamRecords from a JSON string
team_records_instance = TeamRecords.from_json(json)
# print the JSON string representation of the object
print TeamRecords.to_json()
# convert the object into a dict
team_records_dict = team_records_instance.to_dict()
# create an instance of TeamRecords from a dict
team_records_from_dict = TeamRecords.from_dict(team_records_dict)