Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.17 KB

ApiNVD20WeaknessDescExtended.md

File metadata and controls

32 lines (23 loc) · 1.17 KB

ApiNVD20WeaknessDescExtended

Properties

Name Type Description Notes
lang str [optional]
name str [optional]
url str [optional]
value str [optional]

Example

from vulncheck_sdk.models.api_nvd20_weakness_desc_extended import ApiNVD20WeaknessDescExtended

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

# convert the object into a dict
api_nvd20_weakness_desc_extended_dict = api_nvd20_weakness_desc_extended_instance.to_dict()
# create an instance of ApiNVD20WeaknessDescExtended from a dict
api_nvd20_weakness_desc_extended_from_dict = ApiNVD20WeaknessDescExtended.from_dict(api_nvd20_weakness_desc_extended_dict)

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