Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.81 KB

File metadata and controls

33 lines (24 loc) · 1.81 KB

InlineResponse200542ResultDataTasks

Properties

Name Type Description Notes
action str The task's action. * `create` Note: `create` is the only possible value. [optional]
args InlineResponse200542ResultDataArgs [optional]
id str The Task Queue system's task ID number. [optional]
sse_url str The SSE interface to track the progress of the process. [optional]
subsystem str The Task Queue subsystem that will handle the task. * `VersionControl` Note: `VersionControl` is the only possible value. [optional]

Example

from clientapi_cpanel.models.inline_response200542_result_data_tasks import InlineResponse200542ResultDataTasks

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

# convert the object into a dict
inline_response200542_result_data_tasks_dict = inline_response200542_result_data_tasks_instance.to_dict()
# create an instance of InlineResponse200542ResultDataTasks from a dict
inline_response200542_result_data_tasks_from_dict = InlineResponse200542ResultDataTasks.from_dict(inline_response200542_result_data_tasks_dict)

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