Skip to content

Latest commit

 

History

History
40 lines (32 loc) · 1.22 KB

GameLines.md

File metadata and controls

40 lines (32 loc) · 1.22 KB

GameLines

Properties

Name Type Description Notes
game_id int
season int
season_type SeasonType
start_date datetime
home_team_id int
home_team str
home_conference str
home_score float
away_team_id int
away_team str
away_conference str
away_score float
lines List[GameLineInfo]

Example

from cbbd.models.game_lines import GameLines

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

# convert the object into a dict
game_lines_dict = game_lines_instance.to_dict()
# create an instance of GameLines from a dict
game_lines_from_dict = GameLines.from_dict(game_lines_dict)

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