Name | Type | Description | Notes |
---|---|---|---|
affected | List[AdvisoryMAffected] | [optional] | |
date_public | str | OK | [optional] |
descriptions | List[AdvisoryMDescriptions] | OK | [optional] |
impacts | List[AdvisoryImpact] | OK | [optional] |
metrics | List[AdvisoryMetric] | OK | [optional] |
problem_types | List[AdvisoryMProblemTypes] | OK | [optional] |
provider_metadata | AdvisoryMProviderMetadata | OK | [optional] |
references | List[AdvisoryMReference] | [optional] | |
tags | List[str] | OK | [optional] |
title | str | OK | [optional] |
from vulncheck_sdk.models.advisory_adp_container import AdvisoryADPContainer
# TODO update the JSON string below
json = "{}"
# create an instance of AdvisoryADPContainer from a JSON string
advisory_adp_container_instance = AdvisoryADPContainer.from_json(json)
# print the JSON string representation of the object
print(AdvisoryADPContainer.to_json())
# convert the object into a dict
advisory_adp_container_dict = advisory_adp_container_instance.to_dict()
# create an instance of AdvisoryADPContainer from a dict
advisory_adp_container_from_dict = AdvisoryADPContainer.from_dict(advisory_adp_container_dict)