Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.23 KB

AdvisoryCarestreamAdvisory.md

File metadata and controls

34 lines (25 loc) · 1.23 KB

AdvisoryCarestreamAdvisory

Properties

Name Type Description Notes
carestream_id str [optional]
cve List[str] [optional]
date_added str [optional]
date_last_updated str [optional]
title str [optional]
url str [optional]

Example

from vulncheck_sdk.models.advisory_carestream_advisory import AdvisoryCarestreamAdvisory

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

# convert the object into a dict
advisory_carestream_advisory_dict = advisory_carestream_advisory_instance.to_dict()
# create an instance of AdvisoryCarestreamAdvisory from a dict
advisory_carestream_advisory_from_dict = AdvisoryCarestreamAdvisory.from_dict(advisory_carestream_advisory_dict)

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