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 whole server. - `1` - the analyzer is enabled on the server. - `0` - the analyzer is disabled on the server.
[optional]
enabled
int
Whether the analyzer is turned on or off for the domain. - `1` - the analyzer is enabled. - `0` - the analyzer is disabled.
[optional]
locked
int
Whether the analyzer can be turned on or off for the domain by the cPanel user. - `1` - the analyzer can be managed by the cPanel user. - `0` - the analyzer cannot be managed by the cPanel user. The reseller or `root` controls the configuration.
[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.inline_response200494_result_analyzersimportInlineResponse200494ResultAnalyzers# TODO update the JSON string belowjson="{}"# create an instance of InlineResponse200494ResultAnalyzers from a JSON stringinline_response200494_result_analyzers_instance=InlineResponse200494ResultAnalyzers.from_json(json)
# print the JSON string representation of the objectprint(InlineResponse200494ResultAnalyzers.to_json())
# convert the object into a dictinline_response200494_result_analyzers_dict=inline_response200494_result_analyzers_instance.to_dict()
# create an instance of InlineResponse200494ResultAnalyzers from a dictinline_response200494_result_analyzers_from_dict=InlineResponse200494ResultAnalyzers.from_dict(inline_response200494_result_analyzers_dict)