| Name |
Type |
Description |
Notes |
| infected |
bool |
|
[optional] [default to False] |
| description |
str |
|
[optional] |
| filename |
str |
|
[optional] |
| extra |
Dict[str, object] |
|
[optional] |
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]