Skip to content

Files

Latest commit

35de6c1 · Oct 12, 2024

History

History
39 lines (30 loc) · 1.41 KB
·

ApiNVD20CPEMatch.md

File metadata and controls

39 lines (30 loc) · 1.41 KB
·

ApiNVD20CPEMatch

Properties

Name Type Description Notes
cpe_last_modified str [optional]
created str [optional]
criteria str [optional]
last_modified str [optional]
match_criteria_id str [optional]
matches List[ApiNVD20CPEName] [optional]
status str [optional]
version_end_excluding str [optional]
version_end_including str [optional]
version_start_excluding str [optional]
version_start_including str [optional]

Example

from vulncheck_sdk.models.api_nvd20_cpe_match import ApiNVD20CPEMatch

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

# convert the object into a dict
api_nvd20_cpe_match_dict = api_nvd20_cpe_match_instance.to_dict()
# create an instance of ApiNVD20CPEMatch from a dict
api_nvd20_cpe_match_from_dict = ApiNVD20CPEMatch.from_dict(api_nvd20_cpe_match_dict)

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