Skip to content

Latest commit

 

History

History
41 lines (33 loc) · 1.42 KB

TeamRecords.md

File metadata and controls

41 lines (33 loc) · 1.42 KB

TeamRecords

Properties

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

Example

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)

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