Skip to content

Files

Latest commit

35de6c1 · Oct 12, 2024

History

History
34 lines (25 loc) · 1.39 KB
·

AdvisoryAffected.md

File metadata and controls

34 lines (25 loc) · 1.39 KB
·

AdvisoryAffected

Properties

Name Type Description Notes
database_specific object The meaning of the values within the object is entirely defined by the database [optional]
ecosystem_specific object The meaning of the values within the object is entirely defined by the ecosystem [optional]
package AdvisoryOSVPackage [optional]
ranges List[AdvisoryRange] [optional]
severity List[AdvisorySeverity] [optional]
versions List[str] [optional]

Example

from vulncheck_sdk.models.advisory_affected import AdvisoryAffected

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

# convert the object into a dict
advisory_affected_dict = advisory_affected_instance.to_dict()
# create an instance of AdvisoryAffected from a dict
advisory_affected_from_dict = AdvisoryAffected.from_dict(advisory_affected_dict)

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