Name |
Type |
Description |
Notes |
yard_line |
int |
|
|
predicted_points |
float |
|
|
from cfbd.models.predicted_points_value import PredictedPointsValue
# TODO update the JSON string below
json = "{}"
# create an instance of PredictedPointsValue from a JSON string
predicted_points_value_instance = PredictedPointsValue.from_json(json)
# print the JSON string representation of the object
print PredictedPointsValue.to_json()
# convert the object into a dict
predicted_points_value_dict = predicted_points_value_instance.to_dict()
# create an instance of PredictedPointsValue from a dict
predicted_points_value_from_dict = PredictedPointsValue.from_dict(predicted_points_value_dict)
[Back to Model list] [Back to API list] [Back to README]