An object containing Apache log information.
| Name | Type | Description | Notes |
|---|---|---|---|
| domain | str | The `target` log file's domain. An Apache log domain. Generally, this value is `combined`. | [optional] |
| target | str | The absolute path to the domain's log file. | [optional] |
from clientapi_cpanel.models.inline_response200113_result_data_customlog import InlineResponse200113ResultDataCustomlog
# TODO update the JSON string below
json = "{}"
# create an instance of InlineResponse200113ResultDataCustomlog from a JSON string
inline_response200113_result_data_customlog_instance = InlineResponse200113ResultDataCustomlog.from_json(json)
# print the JSON string representation of the object
print(InlineResponse200113ResultDataCustomlog.to_json())
# convert the object into a dict
inline_response200113_result_data_customlog_dict = inline_response200113_result_data_customlog_instance.to_dict()
# create an instance of InlineResponse200113ResultDataCustomlog from a dict
inline_response200113_result_data_customlog_from_dict = InlineResponse200113ResultDataCustomlog.from_dict(inline_response200113_result_data_customlog_dict)