Skip to content

Files

Latest commit

 

History

History
33 lines (24 loc) · 1.25 KB

AdvisoryVulnrichmentContent.md

File metadata and controls

33 lines (24 loc) · 1.25 KB

AdvisoryVulnrichmentContent

Properties

Name Type Description Notes
id str [optional]
options List[AdvisoryVulnrichmentOption] [optional]
role str [optional]
timestamp str [optional]
version str [optional]

Example

from vulncheck_sdk.models.advisory_vulnrichment_content import AdvisoryVulnrichmentContent

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

# convert the object into a dict
advisory_vulnrichment_content_dict = advisory_vulnrichment_content_instance.to_dict()
# create an instance of AdvisoryVulnrichmentContent from a dict
advisory_vulnrichment_content_from_dict = AdvisoryVulnrichmentContent.from_dict(advisory_vulnrichment_content_dict)

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