Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.21 KB

File metadata and controls

33 lines (24 loc) · 1.21 KB

AnalysisClamAVResult

Properties

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]

Example

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)

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