Name | Type | Description | Notes |
---|---|---|---|
branch | List[AdvisoryMBranch] | [optional] | |
full_product_name | List[AdvisoryMFullProductName] | [optional] |
from vulncheck_sdk.models.advisory_m_product_tree import AdvisoryMProductTree
# TODO update the JSON string below
json = "{}"
# create an instance of AdvisoryMProductTree from a JSON string
advisory_m_product_tree_instance = AdvisoryMProductTree.from_json(json)
# print the JSON string representation of the object
print(AdvisoryMProductTree.to_json())
# convert the object into a dict
advisory_m_product_tree_dict = advisory_m_product_tree_instance.to_dict()
# create an instance of AdvisoryMProductTree from a dict
advisory_m_product_tree_from_dict = AdvisoryMProductTree.from_dict(advisory_m_product_tree_dict)