Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 1007 Bytes

TeamRoster.md

File metadata and controls

33 lines (25 loc) · 1007 Bytes

TeamRoster

Properties

Name Type Description Notes
team_id int
team_source_id str
team str
conference str
season float
players List[TeamRosterPlayer]

Example

from cbbd.models.team_roster import TeamRoster

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

# convert the object into a dict
team_roster_dict = team_roster_instance.to_dict()
# create an instance of TeamRoster from a dict
team_roster_from_dict = TeamRoster.from_dict(team_roster_dict)

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