Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.22 KB

File metadata and controls

36 lines (27 loc) · 1.22 KB

TrackedTime

TrackedTime worked time for an issue / pr

Properties

Name Type Description Notes
created datetime [optional]
id int [optional]
issue Issue [optional]
issue_id int deprecated (only for backwards compatibility) [optional]
time int Time in seconds [optional]
user_id int deprecated (only for backwards compatibility) [optional]
user_name str [optional]

Example

from openapi_client.models.tracked_time import TrackedTime

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

# convert the object into a dict
tracked_time_dict = tracked_time_instance.to_dict()
# create an instance of TrackedTime from a dict
tracked_time_from_dict = TrackedTime.from_dict(tracked_time_dict)

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