Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.19 KB

File metadata and controls

31 lines (22 loc) · 1.19 KB

MappingAttributeMalwareScan

Mapping Attribute from document malware scan results

Properties

Name Type Description Notes
attribute_key str Attribute Key
source_type MappingAttributeSourceType

Example

from formkiq_client.models.mapping_attribute_malware_scan import MappingAttributeMalwareScan

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

# convert the object into a dict
mapping_attribute_malware_scan_dict = mapping_attribute_malware_scan_instance.to_dict()
# create an instance of MappingAttributeMalwareScan from a dict
mapping_attribute_malware_scan_from_dict = MappingAttributeMalwareScan.from_dict(mapping_attribute_malware_scan_dict)

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