Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.18 KB

AdvisoryHitachi.md

File metadata and controls

36 lines (27 loc) · 1.18 KB

AdvisoryHitachi

Properties

Name Type Description Notes
affected_products str [optional]
cve List[str] [optional]
date_added str [optional]
fixed_products str [optional]
hitachi_id str [optional]
references List[str] [optional]
title str [optional]
url str [optional]

Example

from vulncheck_sdk.models.advisory_hitachi import AdvisoryHitachi

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

# convert the object into a dict
advisory_hitachi_dict = advisory_hitachi_instance.to_dict()
# create an instance of AdvisoryHitachi from a dict
advisory_hitachi_from_dict = AdvisoryHitachi.from_dict(advisory_hitachi_dict)

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