Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1018 Bytes

AdvisoryProductTree.md

File metadata and controls

29 lines (20 loc) · 1018 Bytes

AdvisoryProductTree

Properties

Name Type Description Notes
relationships List[AdvisoryRelationship] [optional]

Example

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)

[Back to Model list] [Back to API list] [Back to README]