Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 922 Bytes

AdvisoryPGFix.md

File metadata and controls

30 lines (21 loc) · 922 Bytes

AdvisoryPGFix

Properties

Name Type Description Notes
affected str [optional]
fixed str [optional]

Example

from vulncheck_sdk.models.advisory_pg_fix import AdvisoryPGFix

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

# convert the object into a dict
advisory_pg_fix_dict = advisory_pg_fix_instance.to_dict()
# create an instance of AdvisoryPGFix from a dict
advisory_pg_fix_from_dict = AdvisoryPGFix.from_dict(advisory_pg_fix_dict)

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