Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.01 KB

File metadata and controls

32 lines (23 loc) · 1.01 KB

ClamAVResult

Properties

Name Type Description Notes
infected bool [optional] [default to False]
description str [optional]
filename str [optional]
extra Dict[str, object] [optional]

Example

from mandolin_python_client.models.clam_av_result import ClamAVResult

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

# convert the object into a dict
clam_av_result_dict = clam_av_result_instance.to_dict()
# create an instance of ClamAVResult from a dict
clam_av_result_from_dict = ClamAVResult.from_dict(clam_av_result_dict)

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