Skip to content

Latest commit

 

History

History
37 lines (29 loc) · 1.08 KB

LiveGame.md

File metadata and controls

37 lines (29 loc) · 1.08 KB

LiveGame

Properties

Name Type Description Notes
id int
status str
period int
clock str
possession str
down int
distance int
yards_to_goal int
teams List[LiveGameTeam]
drives List[LiveGameDrive]

Example

from cfbd.models.live_game import LiveGame

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

# convert the object into a dict
live_game_dict = live_game_instance.to_dict()
# create an instance of LiveGame from a dict
live_game_from_dict = LiveGame.from_dict(live_game_dict)

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