Skip to content

Latest commit

 

History

History
38 lines (30 loc) · 1.4 KB

File metadata and controls

38 lines (30 loc) · 1.4 KB

TeamConferenceChange

Properties

Name Type Description Notes
team_id int
team str
from_conference_id int
from_conference str
from_conference_abbreviation str
from_classification ConferenceClassification
to_conference_id int
to_conference str
to_conference_abbreviation str
to_classification ConferenceClassification
effective_year int

Example

from cfbd.models.team_conference_change import TeamConferenceChange

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

# convert the object into a dict
team_conference_change_dict = team_conference_change_instance.to_dict()
# create an instance of TeamConferenceChange from a dict
team_conference_change_from_dict = TeamConferenceChange.from_dict(team_conference_change_dict)

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