| Name | Type | Description | Notes |
|---|---|---|---|
| id | int | ||
| season | int | ||
| season_type | SeasonType | ||
| week | int | ||
| start_date | datetime | ||
| home_team_id | int | ||
| home_team | str | ||
| home_conference | str | ||
| home_classification | DivisionClassification | ||
| home_score | int | ||
| away_team_id | int | ||
| away_team | str | ||
| away_conference | str | ||
| away_classification | DivisionClassification | ||
| away_score | int | ||
| lines | List[GameLine] |
from cfbd.models.betting_game import BettingGame
# TODO update the JSON string below
json = "{}"
# create an instance of BettingGame from a JSON string
betting_game_instance = BettingGame.from_json(json)
# print the JSON string representation of the object
print BettingGame.to_json()
# convert the object into a dict
betting_game_dict = betting_game_instance.to_dict()
# create an instance of BettingGame from a dict
betting_game_from_dict = BettingGame.from_dict(betting_game_dict)