Name |
Type |
Description |
Notes |
botnets |
int |
|
[optional] |
exploits |
int |
|
[optional] |
ransomware_families |
int |
|
[optional] |
threat_actors |
int |
|
[optional] |
from vulncheck_sdk.models.api_exploits_v3_count import ApiExploitsV3Count
# TODO update the JSON string below
json = "{}"
# create an instance of ApiExploitsV3Count from a JSON string
api_exploits_v3_count_instance = ApiExploitsV3Count.from_json(json)
# print the JSON string representation of the object
print(ApiExploitsV3Count.to_json())
# convert the object into a dict
api_exploits_v3_count_dict = api_exploits_v3_count_instance.to_dict()
# create an instance of ApiExploitsV3Count from a dict
api_exploits_v3_count_from_dict = ApiExploitsV3Count.from_dict(api_exploits_v3_count_dict)
[Back to Model list] [Back to API list] [Back to README]