Skip to content

Files

Latest commit

35de6c1 · Oct 12, 2024

History

History
33 lines (24 loc) · 1.1 KB
·

AdvisoryAffectedRel.md

File metadata and controls

33 lines (24 loc) · 1.1 KB
·

AdvisoryAffectedRel

Properties

Name Type Description Notes
advisory str [optional]
cpe str [optional]
package str [optional]
product_name str [optional]
release_date str [optional]

Example

from vulncheck_sdk.models.advisory_affected_rel import AdvisoryAffectedRel

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

# convert the object into a dict
advisory_affected_rel_dict = advisory_affected_rel_instance.to_dict()
# create an instance of AdvisoryAffectedRel from a dict
advisory_affected_rel_from_dict = AdvisoryAffectedRel.from_dict(advisory_affected_rel_dict)

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