Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.01 KB

AdvisoryGigabyte.md

File metadata and controls

32 lines (23 loc) · 1.01 KB

AdvisoryGigabyte

Properties

Name Type Description Notes
cve List[str] [optional]
date_added str [optional]
link str [optional]
title str [optional]

Example

from vulncheck_sdk.models.advisory_gigabyte import AdvisoryGigabyte

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

# convert the object into a dict
advisory_gigabyte_dict = advisory_gigabyte_instance.to_dict()
# create an instance of AdvisoryGigabyte from a dict
advisory_gigabyte_from_dict = AdvisoryGigabyte.from_dict(advisory_gigabyte_dict)

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