The domain's Apache log information.
Name | Type | Description | Notes |
---|---|---|---|
format | str | The log file's format. | [optional] |
target | str | The absolute path to the domain's log file in the `domlogs` directory. | [optional] |
from clientapi_cpanel.models.main_domain_contents_customlog import MainDomainContentsCustomlog
# TODO update the JSON string below
json = "{}"
# create an instance of MainDomainContentsCustomlog from a JSON string
main_domain_contents_customlog_instance = MainDomainContentsCustomlog.from_json(json)
# print the JSON string representation of the object
print(MainDomainContentsCustomlog.to_json())
# convert the object into a dict
main_domain_contents_customlog_dict = main_domain_contents_customlog_instance.to_dict()
# create an instance of MainDomainContentsCustomlog from a dict
main_domain_contents_customlog_from_dict = MainDomainContentsCustomlog.from_dict(main_domain_contents_customlog_dict)