Skip to content

Latest commit

 

History

History
42 lines (34 loc) · 1.37 KB

File metadata and controls

42 lines (34 loc) · 1.37 KB

PlayerSearchResult

Properties

Name Type Description Notes
id str
team str
name str
first_name str
last_name str
weight int
height float
jersey int
position str
hometown str
team_color str
team_color_secondary str
active_start_year int
active_end_year int
team_stints List[PlayerSearchTeamStint]

Example

from cfbd.models.player_search_result import PlayerSearchResult

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

# convert the object into a dict
player_search_result_dict = player_search_result_instance.to_dict()
# create an instance of PlayerSearchResult from a dict
player_search_result_from_dict = PlayerSearchResult.from_dict(player_search_result_dict)

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