TaskResult
Class TaskExecutionInfo.
Properties
Name | Type | Description | Notes |
---|---|---|---|
start_time_utc | datetime | Gets or sets the start time UTC. | [optional] |
end_time_utc | datetime | Gets or sets the end time UTC. | [optional] |
status | TaskCompletionStatus | Gets or sets the status. | [optional] |
name | str | Gets or sets the name. | [optional] |
key | str | Gets or sets the key. | [optional] |
id | str | Gets or sets the id. | [optional] |
error_message | str | Gets or sets the error message. | [optional] |
long_error_message | str | Gets or sets the long error message. | [optional] |
Example
from jellyfin.generated.api_10_11.models.task_result import TaskResult
# TODO update the JSON string below
json = "{}"
# create an instance of TaskResult from a JSON string
task_result_instance = TaskResult.from_json(json)
# print the JSON string representation of the object
print(TaskResult.to_json())
# convert the object into a dict
task_result_dict = task_result_instance.to_dict()
# create an instance of TaskResult from a dict
task_result_from_dict = TaskResult.from_dict(task_result_dict)