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] |
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)