| Name | Type | Description | Notes |
|---|---|---|---|
| game_id | float | ||
| season | float | ||
| week | float | ||
| team | str | ||
| conference | str | ||
| opponent | str | ||
| team_score | float | ||
| opponent_score | float | ||
| drive_id | str | ||
| play_id | str | ||
| period | float | ||
| clock | PlayStatClock | ||
| yards_to_goal | float | ||
| down | float | ||
| distance | float | ||
| athlete_id | str | ||
| athlete_name | str | ||
| stat_type | str | ||
| stat | float |
from cfbd.models.play_stat import PlayStat
# TODO update the JSON string below
json = "{}"
# create an instance of PlayStat from a JSON string
play_stat_instance = PlayStat.from_json(json)
# print the JSON string representation of the object
print PlayStat.to_json()
# convert the object into a dict
play_stat_dict = play_stat_instance.to_dict()
# create an instance of PlayStat from a dict
play_stat_from_dict = PlayStat.from_dict(play_stat_dict)