| 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 | ||
| situation | str | ||
| possession | str | ||
| last_play | str | ||
| venue | ScoreboardGameVenue | ||
| home_team | ScoreboardGameHomeTeam | ||
| away_team | ScoreboardGameHomeTeam | ||
| weather | ScoreboardGameWeather | ||
| betting | ScoreboardGameBetting |
from cfbd.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)