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 within the user's `home` directory. | [optional] |
from clientapi_cpanel.models.inline_response200542_result_data_args import InlineResponse200542ResultDataArgs
# TODO update the JSON string below
json = "{}"
# create an instance of InlineResponse200542ResultDataArgs from a JSON string
inline_response200542_result_data_args_instance = InlineResponse200542ResultDataArgs.from_json(json)
# print the JSON string representation of the object
print(InlineResponse200542ResultDataArgs.to_json())
# convert the object into a dict
inline_response200542_result_data_args_dict = inline_response200542_result_data_args_instance.to_dict()
# create an instance of InlineResponse200542ResultDataArgs from a dict
inline_response200542_result_data_args_from_dict = InlineResponse200542ResultDataArgs.from_dict(inline_response200542_result_data_args_dict)