| Name |
Type |
Description |
Notes |
| line_scores |
List[int] |
|
|
| points |
int |
|
|
| conference_abbreviation |
str |
|
|
| conference |
str |
|
|
| location |
str |
|
|
| name |
str |
|
|
| id |
int |
|
|
from cbbd.models.scoreboard_game_home_team import ScoreboardGameHomeTeam
# TODO update the JSON string below
json = "{}"
# create an instance of ScoreboardGameHomeTeam from a JSON string
scoreboard_game_home_team_instance = ScoreboardGameHomeTeam.from_json(json)
# print the JSON string representation of the object
print ScoreboardGameHomeTeam.to_json()
# convert the object into a dict
scoreboard_game_home_team_dict = scoreboard_game_home_team_instance.to_dict()
# create an instance of ScoreboardGameHomeTeam from a dict
scoreboard_game_home_team_from_dict = ScoreboardGameHomeTeam.from_dict(scoreboard_game_home_team_dict)
[Back to Model list] [Back to API list] [Back to README]