Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.05 KB

AdvisoryScore.md

File metadata and controls

33 lines (24 loc) · 1.05 KB

AdvisoryScore

Properties

Name Type Description Notes
cve str [optional]
in_kev bool [optional]
in_vckev bool [optional]
reference_urls List[AdvisoryRefURL] [optional]
score int [optional]

Example

from vulncheck_sdk.models.advisory_score import AdvisoryScore

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

# convert the object into a dict
advisory_score_dict = advisory_score_instance.to_dict()
# create an instance of AdvisoryScore from a dict
advisory_score_from_dict = AdvisoryScore.from_dict(advisory_score_dict)

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