Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.03 KB

AddTimeOption.md

File metadata and controls

32 lines (23 loc) · 1.03 KB

AddTimeOption

AddTimeOption options for adding time to an issue

Properties

Name Type Description Notes
created datetime [optional]
time int time in seconds
user_name str User who spent the time (optional) [optional]

Example

from clientapi_forgejo.models.add_time_option import AddTimeOption

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

# convert the object into a dict
add_time_option_dict = add_time_option_instance.to_dict()
# create an instance of AddTimeOption from a dict
add_time_option_from_dict = AddTimeOption.from_dict(add_time_option_dict)

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