Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1016 Bytes

AdvisoryCVSS.md

File metadata and controls

33 lines (24 loc) · 1016 Bytes

AdvisoryCVSS

Properties

Name Type Description Notes
score str [optional]
severity str [optional]
type str [optional]
vector str [optional]
version str [optional]

Example

from vulncheck_sdk.models.advisory_cvss import AdvisoryCVSS

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

# convert the object into a dict
advisory_cvss_dict = advisory_cvss_instance.to_dict()
# create an instance of AdvisoryCVSS from a dict
advisory_cvss_from_dict = AdvisoryCVSS.from_dict(advisory_cvss_dict)

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