Skip to content

Latest commit

 

History

History
46 lines (38 loc) · 1.33 KB

PlayStat.md

File metadata and controls

46 lines (38 loc) · 1.33 KB

PlayStat

Properties

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

Example

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)

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