Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 909 Bytes

FieldGoalEP.md

File metadata and controls

30 lines (22 loc) · 909 Bytes

FieldGoalEP

Properties

Name Type Description Notes
yards_to_goal int
distance int
expected_points float

Example

from cfbd.models.field_goal_ep import FieldGoalEP

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

# convert the object into a dict
field_goal_ep_dict = field_goal_ep_instance.to_dict()
# create an instance of FieldGoalEP from a dict
field_goal_ep_from_dict = FieldGoalEP.from_dict(field_goal_ep_dict)

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