Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 917 Bytes

TeamSRS.md

File metadata and controls

33 lines (25 loc) · 917 Bytes

TeamSRS

Properties

Name Type Description Notes
year int
team str
conference str
division str
rating float
ranking int

Example

from cfbd.models.team_srs import TeamSRS

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

# convert the object into a dict
team_srs_dict = team_srs_instance.to_dict()
# create an instance of TeamSRS from a dict
team_srs_from_dict = TeamSRS.from_dict(team_srs_dict)

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