Skip to content

Latest commit

 

History

History
40 lines (32 loc) · 1.28 KB

File metadata and controls

40 lines (32 loc) · 1.28 KB

TeamRosterPlayer

Properties

Name Type Description Notes
id int
source_id str
name str
first_name str
last_name str
jersey str
position str
height float
weight float
hometown TeamRosterPlayerHometown
date_of_birth date
start_season float
end_season float

Example

from cbbd.models.team_roster_player import TeamRosterPlayer

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

# convert the object into a dict
team_roster_player_dict = team_roster_player_instance.to_dict()
# create an instance of TeamRosterPlayer from a dict
team_roster_player_from_dict = TeamRosterPlayer.from_dict(team_roster_player_dict)

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