Skip to content

Files

Latest commit

 

History

History
34 lines (25 loc) · 1.05 KB

AdvisoryOmron.md

File metadata and controls

34 lines (25 loc) · 1.05 KB

AdvisoryOmron

Properties

Name Type Description Notes
cve List[str] [optional]
date_added str [optional]
summary str [optional]
title str [optional]
updated_at str [optional]
url str [optional]

Example

from vulncheck_sdk.models.advisory_omron import AdvisoryOmron

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

# convert the object into a dict
advisory_omron_dict = advisory_omron_instance.to_dict()
# create an instance of AdvisoryOmron from a dict
advisory_omron_from_dict = AdvisoryOmron.from_dict(advisory_omron_dict)

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