Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 1023 Bytes

Matchup.md

File metadata and controls

35 lines (27 loc) · 1023 Bytes

Matchup

Properties

Name Type Description Notes
team1 str
team2 str
start_year int [optional]
end_year int [optional]
team1_wins int
team2_wins int
ties int
games List[MatchupGame]

Example

from cfbd.models.matchup import Matchup

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

# convert the object into a dict
matchup_dict = matchup_instance.to_dict()
# create an instance of Matchup from a dict
matchup_from_dict = Matchup.from_dict(matchup_dict)

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