Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 1005 Bytes

TeamFPI.md

File metadata and controls

33 lines (25 loc) · 1005 Bytes

TeamFPI

Properties

Name Type Description Notes
year int
team str
conference str
fpi float
resume_ranks TeamFPIResumeRanks
efficiencies TeamFPIEfficiencies

Example

from cfbd.models.team_fpi import TeamFPI

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

# convert the object into a dict
team_fpi_dict = team_fpi_instance.to_dict()
# create an instance of TeamFPI from a dict
team_fpi_from_dict = TeamFPI.from_dict(team_fpi_dict)

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