Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.1 KB

File metadata and controls

36 lines (27 loc) · 1.1 KB

StopWatch

StopWatch represent a running stopwatch

Properties

Name Type Description Notes
created datetime [optional]
duration str [optional]
issue_index int [optional]
issue_title str [optional]
repo_name str [optional]
repo_owner_name str [optional]
seconds int [optional]

Example

from openapi_client.models.stop_watch import StopWatch

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

# convert the object into a dict
stop_watch_dict = stop_watch_instance.to_dict()
# create an instance of StopWatch from a dict
stop_watch_from_dict = StopWatch.from_dict(stop_watch_dict)

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