Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 1.82 KB

BackgroundTasksTbDto.md

File metadata and controls

34 lines (27 loc) · 1.82 KB

BackgroundTasksTbDto

Properties

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]

Example

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)

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