Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.64 KB

InlineResponse200545ResultDataTasks.md

File metadata and controls

32 lines (23 loc) · 1.64 KB

InlineResponse200545ResultDataTasks

Properties

Name Type Description Notes
action str The task's action. * `create` — Create the repository. * `deploy` — Deploy the repository. [optional]
args InlineResponse200545ResultDataArgs [optional]
id str The Task Queue system's task ID number. [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_response200545_result_data_tasks import InlineResponse200545ResultDataTasks

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

# convert the object into a dict
inline_response200545_result_data_tasks_dict = inline_response200545_result_data_tasks_instance.to_dict()
# create an instance of InlineResponse200545ResultDataTasks from a dict
inline_response200545_result_data_tasks_from_dict = InlineResponse200545ResultDataTasks.from_dict(inline_response200545_result_data_tasks_dict)

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