Skip to content

Latest commit

 

History

History
37 lines (29 loc) · 1.23 KB

File metadata and controls

37 lines (29 loc) · 1.23 KB

GameHavocStats

Properties

Name Type Description Notes
game_id int
season int
season_type SeasonTypeDB
week int
team str
conference str
opponent str
opponent_conference str
offense GameHavocStatsOffense
defense GameHavocStatsOffense

Example

from cfbd.models.game_havoc_stats import GameHavocStats

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

# convert the object into a dict
game_havoc_stats_dict = game_havoc_stats_instance.to_dict()
# create an instance of GameHavocStats from a dict
game_havoc_stats_from_dict = GameHavocStats.from_dict(game_havoc_stats_dict)

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