Skip to content

Latest commit

 

History

History
42 lines (34 loc) · 1.22 KB

TeamInfo.md

File metadata and controls

42 lines (34 loc) · 1.22 KB

TeamInfo

Properties

Name Type Description Notes
id int
source_id str
school str
mascot str
abbreviation str
display_name str
short_display_name str
primary_color str
secondary_color str
current_venue_id int
current_venue str
current_city str
current_state str
conference_id int
conference str

Example

from cbbd.models.team_info import TeamInfo

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

# convert the object into a dict
team_info_dict = team_info_instance.to_dict()
# create an instance of TeamInfo from a dict
team_info_from_dict = TeamInfo.from_dict(team_info_dict)

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