Skip to content

Latest commit

 

History

History
42 lines (34 loc) · 1.41 KB

File metadata and controls

42 lines (34 loc) · 1.41 KB

ScoreboardGame

Properties

Name Type Description Notes
id int
start_date datetime
start_time_tbd bool
tv str
neutral_site bool
conference_game bool
status GameStatus
period int
clock str
venue str
city str
state str
home_team ScoreboardGameHomeTeam
away_team ScoreboardGameHomeTeam
betting ScoreboardGameBetting

Example

from cbbd.models.scoreboard_game import ScoreboardGame

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

# convert the object into a dict
scoreboard_game_dict = scoreboard_game_instance.to_dict()
# create an instance of ScoreboardGame from a dict
scoreboard_game_from_dict = ScoreboardGame.from_dict(scoreboard_game_dict)

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