Name | Type | Description | Notes |
---|---|---|---|
analyzers | List[StatsManagersaveConfigurationAnalyzers] | List of log analyzer configuration objects. | [optional] |
domain | str | Domain you want to configure. | [optional] |
from clientapi_cpanel.models.stats_managersave_configuration_changes import StatsManagersaveConfigurationChanges
# TODO update the JSON string below
json = "{}"
# create an instance of StatsManagersaveConfigurationChanges from a JSON string
stats_managersave_configuration_changes_instance = StatsManagersaveConfigurationChanges.from_json(json)
# print the JSON string representation of the object
print(StatsManagersaveConfigurationChanges.to_json())
# convert the object into a dict
stats_managersave_configuration_changes_dict = stats_managersave_configuration_changes_instance.to_dict()
# create an instance of StatsManagersaveConfigurationChanges from a dict
stats_managersave_configuration_changes_from_dict = StatsManagersaveConfigurationChanges.from_dict(stats_managersave_configuration_changes_dict)