Skip to content

Latest commit

 

History

History
36 lines (28 loc) · 1.18 KB

File metadata and controls

36 lines (28 loc) · 1.18 KB

PlayoffLinkedGame

Properties

Name Type Description Notes
id int
start_date datetime
completed bool
home_team PlayoffTeam
home_points int
away_team PlayoffTeam
away_points int
venue_id int
venue str

Example

from cfbd.models.playoff_linked_game import PlayoffLinkedGame

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

# convert the object into a dict
playoff_linked_game_dict = playoff_linked_game_instance.to_dict()
# create an instance of PlayoffLinkedGame from a dict
playoff_linked_game_from_dict = PlayoffLinkedGame.from_dict(playoff_linked_game_dict)

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