Skip to content

Latest commit

 

History

History
44 lines (36 loc) · 1.29 KB

Recruit.md

File metadata and controls

44 lines (36 loc) · 1.29 KB

Recruit

Properties

Name Type Description Notes
id str
athlete_id str
recruit_type RecruitClassification
year int
ranking int
name str
school str
committed_to str
position str
height int
weight int
stars int
rating float
city str
state_province str
country str
hometown_info RecruitHometownInfo

Example

from cfbd.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]