Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.65 KB

File metadata and controls

33 lines (24 loc) · 1.65 KB

InlineResponse200544ResultTasks

Properties

Name Type Description Notes
action str The task's action. * `create` — Create the repository. * `deploy` — Deploy the repository. [optional]
args InlineResponse200544ResultArgs [optional]
id str The Task Queue system's task ID number. [optional]
sse_url str The Secure Server Events (SSE) interface URL to track the progress of the process. [optional]
subsystem str The Task Queue subsystem that will handle the task. * `VersionControl` is the only possible value. [optional]

Example

from clientapi_cpanel.models.inline_response200544_result_tasks import InlineResponse200544ResultTasks

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

# convert the object into a dict
inline_response200544_result_tasks_dict = inline_response200544_result_tasks_instance.to_dict()
# create an instance of InlineResponse200544ResultTasks from a dict
inline_response200544_result_tasks_from_dict = InlineResponse200544ResultTasks.from_dict(inline_response200544_result_tasks_dict)

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