Skip to content

Files

Latest commit

 

History

History
30 lines (21 loc) · 964 Bytes
·

AdvisoryScoreSet.md

File metadata and controls

30 lines (21 loc) · 964 Bytes
·

AdvisoryScoreSet

Properties

Name Type Description Notes
base_score str [optional]
vector str [optional]

Example

from vulncheck_sdk.models.advisory_score_set import AdvisoryScoreSet

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

# convert the object into a dict
advisory_score_set_dict = advisory_score_set_instance.to_dict()
# create an instance of AdvisoryScoreSet from a dict
advisory_score_set_from_dict = AdvisoryScoreSet.from_dict(advisory_score_set_dict)

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