Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.22 KB

ApiCveItems.md

File metadata and controls

35 lines (26 loc) · 1.22 KB

ApiCveItems

Properties

Name Type Description Notes
configurations ApiConfigurations [optional]
cve ApiCVE [optional]
impact ApiImpact [optional]
last_modified_date str [optional]
published_date str [optional]
vc_configurations ApiConfigurations [optional]
vc_vulnerable_cpes List[str] [optional]

Example

from vulncheck_sdk.models.api_cve_items import ApiCveItems

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

# convert the object into a dict
api_cve_items_dict = api_cve_items_instance.to_dict()
# create an instance of ApiCveItems from a dict
api_cve_items_from_dict = ApiCveItems.from_dict(api_cve_items_dict)

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