GetMalwareScanResultDetails¶
Structure Class¶
GetMalwareScanResultDetails
dataclass
¶
Contains information about the results of the malware scan.
Attributes¶
failed_file_count
class-attribute
instance-attribute
¶
failed_file_count: int | None = None
The total number of files that failed to be scanned.
scan_result_status
class-attribute
instance-attribute
¶
scan_result_status: ScanResultStatus | None = None
Status indicating whether threats were found for a completed scan.
skipped_file_count
class-attribute
instance-attribute
¶
skipped_file_count: int | None = None
The total number of files that were skipped during the scan.
threat_found_file_count
class-attribute
instance-attribute
¶
threat_found_file_count: int | None = None
The total number of files in which threats were detected.
threats
class-attribute
instance-attribute
¶
threats: list[ScanResultThreat] | None = None
The threats that were detected during the malware scan.
total_bytes
class-attribute
instance-attribute
¶
total_bytes: int | None = None
The total number of bytes that were scanned.
total_file_count
class-attribute
instance-attribute
¶
total_file_count: int | None = None
The total number of files that were processed during the scan.
unique_threat_count
class-attribute
instance-attribute
¶
unique_threat_count: int | None = None
The total number of unique threats that were detected during the scan.