Name | Type | Description | Notes |
---|---|---|---|
game_id | int | ||
season | int | ||
week | int | ||
team | str | ||
opponent | str | ||
offense | AdvancedGameStatOffense | ||
defense | AdvancedGameStatOffense |
from cfbd.models.advanced_game_stat import AdvancedGameStat
# TODO update the JSON string below
json = "{}"
# create an instance of AdvancedGameStat from a JSON string
advanced_game_stat_instance = AdvancedGameStat.from_json(json)
# print the JSON string representation of the object
print AdvancedGameStat.to_json()
# convert the object into a dict
advanced_game_stat_dict = advanced_game_stat_instance.to_dict()
# create an instance of AdvancedGameStat from a dict
advanced_game_stat_from_dict = AdvancedGameStat.from_dict(advanced_game_stat_dict)