Skip to content

Files

Latest commit

35de6c1 · Oct 12, 2024

History

History
41 lines (32 loc) · 1.36 KB
·

AdvisoryUnisoc.md

File metadata and controls

41 lines (32 loc) · 1.36 KB
·

AdvisoryUnisoc

Properties

Name Type Description Notes
access_vector str [optional]
affected_chipsets str [optional]
affected_software str [optional]
cve List[str] [optional]
date_added str [optional]
description str [optional]
rating str [optional]
score str [optional]
severity str [optional]
technology str [optional]
title str [optional]
url str [optional]
vulnerability str [optional]

Example

from vulncheck_sdk.models.advisory_unisoc import AdvisoryUnisoc

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

# convert the object into a dict
advisory_unisoc_dict = advisory_unisoc_instance.to_dict()
# create an instance of AdvisoryUnisoc from a dict
advisory_unisoc_from_dict = AdvisoryUnisoc.from_dict(advisory_unisoc_dict)

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