Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 990 Bytes

KickerPAAR.md

File metadata and controls

34 lines (26 loc) · 990 Bytes

KickerPAAR

Properties

Name Type Description Notes
year int
athlete_id str
athlete_name str
team str
conference str
paar float
attempts int

Example

from cfbd.models.kicker_paar import KickerPAAR

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

# convert the object into a dict
kicker_paar_dict = kicker_paar_instance.to_dict()
# create an instance of KickerPAAR from a dict
kicker_paar_from_dict = KickerPAAR.from_dict(kicker_paar_dict)

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