Skip to content

Files

Latest commit

35de6c1 · Oct 12, 2024

History

History
40 lines (31 loc) · 1.5 KB
·

AdvisoryLexmarkAdvisory.md

File metadata and controls

40 lines (31 loc) · 1.5 KB
·

AdvisoryLexmarkAdvisory

Properties

Name Type Description Notes
affected_products List[AdvisoryAffectedProduct] [optional]
cve List[str] [optional]
date_added str [optional]
details str [optional]
impact str [optional]
last_update str [optional]
link str [optional]
public_release_date str [optional]
references List[str] [optional]
revision str [optional]
summary str [optional]
workarounds str [optional]

Example

from vulncheck_sdk.models.advisory_lexmark_advisory import AdvisoryLexmarkAdvisory

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

# convert the object into a dict
advisory_lexmark_advisory_dict = advisory_lexmark_advisory_instance.to_dict()
# create an instance of AdvisoryLexmarkAdvisory from a dict
advisory_lexmark_advisory_from_dict = AdvisoryLexmarkAdvisory.from_dict(advisory_lexmark_advisory_dict)

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