Name | Type | Description | Notes |
---|---|---|---|
cve_data_meta | ApiCVEDataMeta | [optional] | |
data_format | str | [optional] | |
data_type | str | [optional] | |
data_version | str | [optional] | |
description | ApiDescription | [optional] | |
problemtype | ApiProblemType | [optional] | |
references | ApiReferences | [optional] |
from vulncheck_sdk.models.api_cve import ApiCVE
# TODO update the JSON string below
json = "{}"
# create an instance of ApiCVE from a JSON string
api_cve_instance = ApiCVE.from_json(json)
# print the JSON string representation of the object
print(ApiCVE.to_json())
# convert the object into a dict
api_cve_dict = api_cve_instance.to_dict()
# create an instance of ApiCVE from a dict
api_cve_from_dict = ApiCVE.from_dict(api_cve_dict)