| Name | Type | Description | Notes |
|---|---|---|---|
| success | bool | [optional] [default to False] | |
| content | str | [optional] | |
| error | str | [optional] | |
| error_short | str | [optional] | |
| processors | Dict[str, AnalyzerResultClamAVResult] | [optional] |
from mandolin_python_client.models.analysis_clam_av_result import AnalysisClamAVResult
# TODO update the JSON string below
json = "{}"
# create an instance of AnalysisClamAVResult from a JSON string
analysis_clam_av_result_instance = AnalysisClamAVResult.from_json(json)
# print the JSON string representation of the object
print(AnalysisClamAVResult.to_json())
# convert the object into a dict
analysis_clam_av_result_dict = analysis_clam_av_result_instance.to_dict()
# create an instance of AnalysisClamAVResult from a dict
analysis_clam_av_result_from_dict = AnalysisClamAVResult.from_dict(analysis_clam_av_result_dict)