Skip to content

Latest commit

 

History

History
47 lines (34 loc) · 1.46 KB

TimerResult.md

File metadata and controls

47 lines (34 loc) · 1.46 KB

TimerResult

Properties

Name Type Description Notes
time_unit str
count int
total_duration int

Example

from polaris.catalog.models.timer_result import TimerResult

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

# convert the object into a dict
timer_result_dict = timer_result_instance.to_dict()
# create an instance of TimerResult from a dict
timer_result_from_dict = TimerResult.from_dict(timer_result_dict)

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