Name | Type | Description | Notes |
---|---|---|---|
relationships | List[AdvisoryRelationship] | [optional] |
from vulncheck_sdk.models.advisory_product_tree import AdvisoryProductTree
# TODO update the JSON string below
json = "{}"
# create an instance of AdvisoryProductTree from a JSON string
advisory_product_tree_instance = AdvisoryProductTree.from_json(json)
# print the JSON string representation of the object
print(AdvisoryProductTree.to_json())
# convert the object into a dict
advisory_product_tree_dict = advisory_product_tree_instance.to_dict()
# create an instance of AdvisoryProductTree from a dict
advisory_product_tree_from_dict = AdvisoryProductTree.from_dict(advisory_product_tree_dict)