Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 947 Bytes

File metadata and controls

32 lines (23 loc) · 947 Bytes

ScanResult

Properties

Name Type Description Notes
status str
finding str [optional]
size float [optional]
realfiletype str [optional]

Example

from attachmentav.models.scan_result import ScanResult

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

# convert the object into a dict
scan_result_dict = scan_result_instance.to_dict()
# create an instance of ScanResult from a dict
scan_result_from_dict = ScanResult.from_dict(scan_result_dict)

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