Name | Type | Description | Notes |
---|---|---|---|
description | str | [optional] | |
meta | AdvisoryMispMeta | [optional] | |
related | List[AdvisoryMispRelatedItem] | [optional] | |
uuid | str | [optional] | |
value | str | [optional] |
from vulncheck_sdk.models.advisory_misp_value import AdvisoryMispValue
# TODO update the JSON string below
json = "{}"
# create an instance of AdvisoryMispValue from a JSON string
advisory_misp_value_instance = AdvisoryMispValue.from_json(json)
# print the JSON string representation of the object
print(AdvisoryMispValue.to_json())
# convert the object into a dict
advisory_misp_value_dict = advisory_misp_value_instance.to_dict()
# create an instance of AdvisoryMispValue from a dict
advisory_misp_value_from_dict = AdvisoryMispValue.from_dict(advisory_misp_value_dict)