Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 892 Bytes

TeamRecord.md

File metadata and controls

31 lines (23 loc) · 892 Bytes

TeamRecord

Properties

Name Type Description Notes
games int
wins int
losses int
ties int

Example

from cfbd.models.team_record import TeamRecord

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

# convert the object into a dict
team_record_dict = team_record_instance.to_dict()
# create an instance of TeamRecord from a dict
team_record_from_dict = TeamRecord.from_dict(team_record_dict)

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