Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.5 KB

File metadata and controls

31 lines (22 loc) · 1.5 KB

InlineResponse200113ResultDataCustomlog

An object containing Apache log information.

Properties

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]

Example

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)

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