Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.07 KB

ApiExploitsV3Count.md

File metadata and controls

32 lines (23 loc) · 1.07 KB

ApiExploitsV3Count

Properties

Name Type Description Notes
botnets int [optional]
exploits int [optional]
ransomware_families int [optional]
threat_actors int [optional]

Example

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]