Skip to content

Latest commit

 

History

History
38 lines (30 loc) · 1.29 KB

File metadata and controls

38 lines (30 loc) · 1.29 KB

PlayoffMatchup

Properties

Name Type Description Notes
id int
bracket_slot str
round PlayoffRound
round_name str
round_order int
matchup_order int
start_date datetime
bowl_name str
slots List[PlayoffMatchupSlot]
game PlayoffLinkedGame
advances_to PlayoffAdvancement

Example

from cfbd.models.playoff_matchup import PlayoffMatchup

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

# convert the object into a dict
playoff_matchup_dict = playoff_matchup_instance.to_dict()
# create an instance of PlayoffMatchup from a dict
playoff_matchup_from_dict = PlayoffMatchup.from_dict(playoff_matchup_dict)

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