Name | Type | Description | Notes |
---|---|---|---|
adp | List[AdvisoryADP] | [optional] | |
cna | AdvisoryMCna | [optional] |
from vulncheck_sdk.models.advisory_vulnrichment_containers import AdvisoryVulnrichmentContainers
# TODO update the JSON string below
json = "{}"
# create an instance of AdvisoryVulnrichmentContainers from a JSON string
advisory_vulnrichment_containers_instance = AdvisoryVulnrichmentContainers.from_json(json)
# print the JSON string representation of the object
print(AdvisoryVulnrichmentContainers.to_json())
# convert the object into a dict
advisory_vulnrichment_containers_dict = advisory_vulnrichment_containers_instance.to_dict()
# create an instance of AdvisoryVulnrichmentContainers from a dict
advisory_vulnrichment_containers_from_dict = AdvisoryVulnrichmentContainers.from_dict(advisory_vulnrichment_containers_dict)