A list of arguments for the Task Queue system's process.
| Name | Type | Description | Notes |
|---|---|---|---|
| log_file | str | The absolute path to the process's log file. Note: The function only returns this value if the process generated a log file. | [optional] |
| repository_root | str | The absolute path to the repository's directory in the user's `home` directory. | [optional] |
from clientapi_cpanel.models.inline_response200544_result_args import InlineResponse200544ResultArgs
# TODO update the JSON string below
json = "{}"
# create an instance of InlineResponse200544ResultArgs from a JSON string
inline_response200544_result_args_instance = InlineResponse200544ResultArgs.from_json(json)
# print the JSON string representation of the object
print(InlineResponse200544ResultArgs.to_json())
# convert the object into a dict
inline_response200544_result_args_dict = inline_response200544_result_args_instance.to_dict()
# create an instance of InlineResponse200544ResultArgs from a dict
inline_response200544_result_args_from_dict = InlineResponse200544ResultArgs.from_dict(inline_response200544_result_args_dict)