Mapping Attribute from document malware scan results
| Name | Type | Description | Notes |
|---|---|---|---|
| attribute_key | str | Attribute Key | |
| source_type | MappingAttributeSourceType |
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)