Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 951 Bytes

AdvisorySeverity.md

File metadata and controls

30 lines (21 loc) · 951 Bytes

AdvisorySeverity

Properties

Name Type Description Notes
score str [optional]
type str [optional]

Example

from vulncheck_sdk.models.advisory_severity import AdvisorySeverity

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

# convert the object into a dict
advisory_severity_dict = advisory_severity_instance.to_dict()
# create an instance of AdvisorySeverity from a dict
advisory_severity_from_dict = AdvisorySeverity.from_dict(advisory_severity_dict)

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