Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.4 KB

ApiCVEExtended.md

File metadata and controls

36 lines (27 loc) · 1.4 KB

ApiCVEExtended

Properties

Name Type Description Notes
cve_data_meta ApiCVEDataMetaExtended [optional]
categorization ApiCategorizationExtended [optional]
data_format str [optional]
data_type str [optional]
data_version str [optional]
description ApiDescription [optional]
problemtype ApiProblemTypeExtended [optional]
references ApiReferencesExtended [optional]

Example

from vulncheck_sdk.models.api_cve_extended import ApiCVEExtended

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

# convert the object into a dict
api_cve_extended_dict = api_cve_extended_instance.to_dict()
# create an instance of ApiCVEExtended from a dict
api_cve_extended_from_dict = ApiCVEExtended.from_dict(api_cve_extended_dict)

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