Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.08 KB

File metadata and controls

32 lines (24 loc) · 1.08 KB

TeamPassingSeason

Properties

Name Type Description Notes
season int
team str
conference str
offense PassingProduction
defense PassingProduction

Example

from cfbd.models.team_passing_season import TeamPassingSeason

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

# convert the object into a dict
team_passing_season_dict = team_passing_season_instance.to_dict()
# create an instance of TeamPassingSeason from a dict
team_passing_season_from_dict = TeamPassingSeason.from_dict(team_passing_season_dict)

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