Skip to content

Latest commit

 

History

History
42 lines (34 loc) · 1.22 KB

File metadata and controls

42 lines (34 loc) · 1.22 KB

Recruit

Properties

Name Type Description Notes
id int
source_id str
position str
school_id int
school str
hometown RecruitHometown
committed_to RecruitCommittedTo
athlete_id int
year int
name str
height_inches float
weight_pounds int
stars int
rating float
ranking int

Example

from cbbd.models.recruit import Recruit

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

# convert the object into a dict
recruit_dict = recruit_instance.to_dict()
# create an instance of Recruit from a dict
recruit_from_dict = Recruit.from_dict(recruit_dict)

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