Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 981 Bytes

TeamPPA.md

File metadata and controls

32 lines (24 loc) · 981 Bytes

TeamPPA

Properties

Name Type Description Notes
team str
plays int
overall StatsByQuarter
passing StatsByQuarter
rushing StatsByQuarter

Example

from cfbd.models.team_ppa import TeamPPA

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

# convert the object into a dict
team_ppa_dict = team_ppa_instance.to_dict()
# create an instance of TeamPPA from a dict
team_ppa_from_dict = TeamPPA.from_dict(team_ppa_dict)

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