Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 1.08 KB

File metadata and controls

35 lines (27 loc) · 1.08 KB

GamePlayoff

Properties

Name Type Description Notes
competition PlayoffCompetition
format str
round PlayoffRound
round_name str
bracket_slot str
home_seed int
away_seed int
bowl_name str

Example

from cfbd.models.game_playoff import GamePlayoff

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

# convert the object into a dict
game_playoff_dict = game_playoff_instance.to_dict()
# create an instance of GamePlayoff from a dict
game_playoff_from_dict = GamePlayoff.from_dict(game_playoff_dict)

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