Skip to content

Latest commit

 

History

History
36 lines (28 loc) · 1.43 KB

TeamGamePredictedPointsAdded.md

File metadata and controls

36 lines (28 loc) · 1.43 KB

TeamGamePredictedPointsAdded

Properties

Name Type Description Notes
game_id int
season int
week int
season_type SeasonType
team str
conference str
opponent str
offense TeamGamePredictedPointsAddedOffense
defense TeamGamePredictedPointsAddedOffense

Example

from cfbd.models.team_game_predicted_points_added import TeamGamePredictedPointsAdded

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

# convert the object into a dict
team_game_predicted_points_added_dict = team_game_predicted_points_added_instance.to_dict()
# create an instance of TeamGamePredictedPointsAdded from a dict
team_game_predicted_points_added_from_dict = TeamGamePredictedPointsAdded.from_dict(team_game_predicted_points_added_dict)

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