| Name | Type | Description | Notes |
|---|---|---|---|
| team_id | int | ||
| team | str | ||
| conference_id | int | ||
| conference | str | ||
| conference_abbreviation | str | ||
| classification | ConferenceClassification | ||
| conference_division | str | ||
| start_year | int | ||
| end_year | int |
from cfbd.models.team_conference_affiliation import TeamConferenceAffiliation
# TODO update the JSON string below
json = "{}"
# create an instance of TeamConferenceAffiliation from a JSON string
team_conference_affiliation_instance = TeamConferenceAffiliation.from_json(json)
# print the JSON string representation of the object
print TeamConferenceAffiliation.to_json()
# convert the object into a dict
team_conference_affiliation_dict = team_conference_affiliation_instance.to_dict()
# create an instance of TeamConferenceAffiliation from a dict
team_conference_affiliation_from_dict = TeamConferenceAffiliation.from_dict(team_conference_affiliation_dict)