Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.08 KB

AdvisoryCweAcceptanceLevel.md

File metadata and controls

30 lines (21 loc) · 1.08 KB

AdvisoryCweAcceptanceLevel

Properties

Name Type Description Notes
description str [optional]
last_modified str [optional]

Example

from vulncheck_sdk.models.advisory_cwe_acceptance_level import AdvisoryCweAcceptanceLevel

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

# convert the object into a dict
advisory_cwe_acceptance_level_dict = advisory_cwe_acceptance_level_instance.to_dict()
# create an instance of AdvisoryCweAcceptanceLevel from a dict
advisory_cwe_acceptance_level_from_dict = AdvisoryCweAcceptanceLevel.from_dict(advisory_cwe_acceptance_level_dict)

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