Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.36 KB

MainDomainContentsCustomlog.md

File metadata and controls

31 lines (22 loc) · 1.36 KB

MainDomainContentsCustomlog

The domain's Apache log information.

Properties

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]

Example

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)

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