Skip to content

Files

Latest commit

 

History

History
33 lines (25 loc) · 1.17 KB

ConferenceHistoryTeamsInner.md

File metadata and controls

33 lines (25 loc) · 1.17 KB

ConferenceHistoryTeamsInner

Properties

Name Type Description Notes
end_season int
start_season int
mascot str
school str
source_id str
id int

Example

from cbbd.models.conference_history_teams_inner import ConferenceHistoryTeamsInner

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

# convert the object into a dict
conference_history_teams_inner_dict = conference_history_teams_inner_instance.to_dict()
# create an instance of ConferenceHistoryTeamsInner from a dict
conference_history_teams_inner_from_dict = ConferenceHistoryTeamsInner.from_dict(conference_history_teams_inner_dict)

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