You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
fromclientapi_cpanel.models.stats_managersave_configuration_analyzersimportStatsManagersaveConfigurationAnalyzers# TODO update the JSON string belowjson="{}"# create an instance of StatsManagersaveConfigurationAnalyzers from a JSON stringstats_managersave_configuration_analyzers_instance=StatsManagersaveConfigurationAnalyzers.from_json(json)
# print the JSON string representation of the objectprint(StatsManagersaveConfigurationAnalyzers.to_json())
# convert the object into a dictstats_managersave_configuration_analyzers_dict=stats_managersave_configuration_analyzers_instance.to_dict()
# create an instance of StatsManagersaveConfigurationAnalyzers from a dictstats_managersave_configuration_analyzers_from_dict=StatsManagersaveConfigurationAnalyzers.from_dict(stats_managersave_configuration_analyzers_dict)