Skip to content

Files

Latest commit

 

History

History
32 lines (23 loc) · 1.21 KB

ApiNVD20ThreatCVSSV40.md

File metadata and controls

32 lines (23 loc) · 1.21 KB

ApiNVD20ThreatCVSSV40

Properties

Name Type Description Notes
associated_base_metric_v40 ApiNVD20ThreatAssociatedBaseMetric [optional]
base_threat_score float [optional]
base_threat_severity str [optional]
exploit_maturity str [optional]

Example

from vulncheck_sdk.models.api_nvd20_threat_cvssv40 import ApiNVD20ThreatCVSSV40

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

# convert the object into a dict
api_nvd20_threat_cvssv40_dict = api_nvd20_threat_cvssv40_instance.to_dict()
# create an instance of ApiNVD20ThreatCVSSV40 from a dict
api_nvd20_threat_cvssv40_from_dict = ApiNVD20ThreatCVSSV40.from_dict(api_nvd20_threat_cvssv40_dict)

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