Skip to content

Files

Latest commit

35de6c1 · Oct 12, 2024

History

History
31 lines (22 loc) · 1.22 KB
·

ApiNVD20ThreatAssociatedBaseMetric.md

File metadata and controls

31 lines (22 loc) · 1.22 KB
·

ApiNVD20ThreatAssociatedBaseMetric

Properties

Name Type Description Notes
base_score float [optional]
source str [optional]
type str [optional]

Example

from vulncheck_sdk.models.api_nvd20_threat_associated_base_metric import ApiNVD20ThreatAssociatedBaseMetric

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

# convert the object into a dict
api_nvd20_threat_associated_base_metric_dict = api_nvd20_threat_associated_base_metric_instance.to_dict()
# create an instance of ApiNVD20ThreatAssociatedBaseMetric from a dict
api_nvd20_threat_associated_base_metric_from_dict = ApiNVD20ThreatAssociatedBaseMetric.from_dict(api_nvd20_threat_associated_base_metric_dict)

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