Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 2.05 KB

File metadata and controls

32 lines (23 loc) · 2.05 KB

InlineResponse200494ResultAnalyzers

Properties

Name Type Description Notes
available int 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

from clientapi_cpanel.models.inline_response200494_result_analyzers import InlineResponse200494ResultAnalyzers

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

# convert the object into a dict
inline_response200494_result_analyzers_dict = inline_response200494_result_analyzers_instance.to_dict()
# create an instance of InlineResponse200494ResultAnalyzers from a dict
inline_response200494_result_analyzers_from_dict = InlineResponse200494ResultAnalyzers.from_dict(inline_response200494_result_analyzers_dict)

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