Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.57 KB

File metadata and controls

30 lines (21 loc) · 1.57 KB

StatsManagersaveConfigurationAnalyzers

Properties

Name Type Description Notes
enabled int Whether the analyzer is turned on or off for the domain. - `1` - the analyzer is enabled. - `0` - the analyzer is disabled. [optional]
name str Name of the analyzer. It must be one of the following: - `analog` - Analog weblog analyzer. - `awstats` - AWStats weblog analyzer. - `webalizer` - The Webalizer weblog analyzer. [optional]

Example

from clientapi_cpanel.models.stats_managersave_configuration_analyzers import StatsManagersaveConfigurationAnalyzers

# TODO update the JSON string below
json = "{}"
# create an instance of StatsManagersaveConfigurationAnalyzers from a JSON string
stats_managersave_configuration_analyzers_instance = StatsManagersaveConfigurationAnalyzers.from_json(json)
# print the JSON string representation of the object
print(StatsManagersaveConfigurationAnalyzers.to_json())

# convert the object into a dict
stats_managersave_configuration_analyzers_dict = stats_managersave_configuration_analyzers_instance.to_dict()
# create an instance of StatsManagersaveConfigurationAnalyzers from a dict
stats_managersave_configuration_analyzers_from_dict = StatsManagersaveConfigurationAnalyzers.from_dict(stats_managersave_configuration_analyzers_dict)

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