Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.38 KB

File metadata and controls

36 lines (27 loc) · 1.38 KB

AnalyzerResultClamAVResult

Properties

Name Type Description Notes
success bool [optional] [default to False]
processor_name str
processor_url str
processor_description str [optional]
error str [optional]
error_short str [optional]
metadata Dict[str, object] [optional]
analysis ClamAVResult [optional]

Example

from mandolin_python_client.models.analyzer_result_clam_av_result import AnalyzerResultClamAVResult

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

# convert the object into a dict
analyzer_result_clam_av_result_dict = analyzer_result_clam_av_result_instance.to_dict()
# create an instance of AnalyzerResultClamAVResult from a dict
analyzer_result_clam_av_result_from_dict = AnalyzerResultClamAVResult.from_dict(analyzer_result_clam_av_result_dict)

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