Skip to content

Latest commit

 

History

History
36 lines (28 loc) · 1.18 KB

File metadata and controls

36 lines (28 loc) · 1.18 KB

TeamPassingGame

Properties

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

Example

from cfbd.models.team_passing_game import TeamPassingGame

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

# convert the object into a dict
team_passing_game_dict = team_passing_game_instance.to_dict()
# create an instance of TeamPassingGame from a dict
team_passing_game_from_dict = TeamPassingGame.from_dict(team_passing_game_dict)

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