Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.15 KB

TaskResource.md

File metadata and controls

36 lines (27 loc) · 1.15 KB

TaskResource

Properties

Name Type Description Notes
id int [optional]
name str [optional]
task_name str [optional]
interval int [optional]
last_execution datetime [optional]
last_start_time datetime [optional]
next_execution datetime [optional]
last_duration str [optional] [readonly]

Example

from sonarr.models.task_resource import TaskResource

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

# convert the object into a dict
task_resource_dict = task_resource_instance.to_dict()
# create an instance of TaskResource from a dict
task_resource_from_dict = TaskResource.from_dict(task_resource_dict)

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