Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 1.19 KB

File metadata and controls

35 lines (27 loc) · 1.19 KB

AdvancedGameStat

Properties

Name Type Description Notes
game_id int
season int
season_type SeasonTypeDB
week int
team str
opponent str
offense AdvancedGameStatOffense
defense AdvancedGameStatDefense

Example

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)

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