Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 960 Bytes

ApiNVD20CPEName.md

File metadata and controls

30 lines (21 loc) · 960 Bytes

ApiNVD20CPEName

Properties

Name Type Description Notes
cpe_name str [optional]
cpe_name_id str [optional]

Example

from vulncheck_sdk.models.api_nvd20_cpe_name import ApiNVD20CPEName

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

# convert the object into a dict
api_nvd20_cpe_name_dict = api_nvd20_cpe_name_instance.to_dict()
# create an instance of ApiNVD20CPEName from a dict
api_nvd20_cpe_name_from_dict = ApiNVD20CPEName.from_dict(api_nvd20_cpe_name_dict)

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