Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.67 KB

InlineResponse200493ResultMetadata.md

File metadata and controls

31 lines (22 loc) · 1.67 KB

InlineResponse200493ResultMetadata

Properties

Name Type Description Notes
analyzers List[InlineResponse200493ResultMetadataAnalyzers] System configruation for each analyzer. [optional]
locked int Whether the analyzer can be turned on or off for the domain by the cPanel user. - `1` - the analyzer cannot be managed by the cPanel user. The reseller or `root` controls the configuration. - `0` - the analyzer can be managed by the cPanel user. [optional]
transformed int Post-processing may have transformed the data. [optional]

Example

from clientapi_cpanel.models.inline_response200493_result_metadata import InlineResponse200493ResultMetadata

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

# convert the object into a dict
inline_response200493_result_metadata_dict = inline_response200493_result_metadata_instance.to_dict()
# create an instance of InlineResponse200493ResultMetadata from a dict
inline_response200493_result_metadata_from_dict = InlineResponse200493ResultMetadata.from_dict(inline_response200493_result_metadata_dict)

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