StopWatch represent a running stopwatch
| 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] |
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)