Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1016 Bytes

AdvisorySAP.md

File metadata and controls

33 lines (24 loc) · 1016 Bytes

AdvisorySAP

Properties

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

Example

from vulncheck_sdk.models.advisory_sap import AdvisorySAP

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

# convert the object into a dict
advisory_sap_dict = advisory_sap_instance.to_dict()
# create an instance of AdvisorySAP from a dict
advisory_sap_from_dict = AdvisorySAP.from_dict(advisory_sap_dict)

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