Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 894 Bytes

PlayStatClock.md

File metadata and controls

29 lines (21 loc) · 894 Bytes

PlayStatClock

Properties

Name Type Description Notes
seconds float
minutes float

Example

from cfbd.models.play_stat_clock import PlayStatClock

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

# convert the object into a dict
play_stat_clock_dict = play_stat_clock_instance.to_dict()
# create an instance of PlayStatClock from a dict
play_stat_clock_from_dict = PlayStatClock.from_dict(play_stat_clock_dict)

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