Skip to content

Files

Latest commit

35de6c1 · Oct 12, 2024

History

History
37 lines (28 loc) · 1.38 KB
·

AdvisoryEmergingThreatsSnort.md

File metadata and controls

37 lines (28 loc) · 1.38 KB
·

AdvisoryEmergingThreatsSnort

Properties

Name Type Description Notes
cve List[str] [optional]
date_added str [optional]
references List[str] [optional]
rev str [optional]
rule_disabled bool [optional]
rule_name str [optional]
sid int [optional]
updated_at str [optional]
url str [optional]

Example

from vulncheck_sdk.models.advisory_emerging_threats_snort import AdvisoryEmergingThreatsSnort

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

# convert the object into a dict
advisory_emerging_threats_snort_dict = advisory_emerging_threats_snort_instance.to_dict()
# create an instance of AdvisoryEmergingThreatsSnort from a dict
advisory_emerging_threats_snort_from_dict = AdvisoryEmergingThreatsSnort.from_dict(advisory_emerging_threats_snort_dict)

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