Name | Type | Description | Notes |
---|---|---|---|
status | str | [optional] | |
finished_data_text | str | [optional] | |
async_request | AsyncRequestDto | [optional] | |
last_task_string | str | [optional] | |
metadata | MetadataResponse | [optional] | |
last_task_ok | str | [optional] | |
last_task_error | str | [optional] | |
last_task_error_html | str | [optional] |
from phrasetms_client.models.background_tasks_tb_dto import BackgroundTasksTbDto
# TODO update the JSON string below
json = "{}"
# create an instance of BackgroundTasksTbDto from a JSON string
background_tasks_tb_dto_instance = BackgroundTasksTbDto.from_json(json)
# print the JSON string representation of the object
print BackgroundTasksTbDto.to_json()
# convert the object into a dict
background_tasks_tb_dto_dict = background_tasks_tb_dto_instance.to_dict()
# create an instance of BackgroundTasksTbDto from a dict
background_tasks_tb_dto_from_dict = BackgroundTasksTbDto.from_dict(background_tasks_tb_dto_dict)