Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.15 KB

ApiCVE.md

File metadata and controls

35 lines (26 loc) · 1.15 KB

ApiCVE

Properties

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]

Example

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)

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