Name | Type | Description | Notes |
---|---|---|---|
branch | List[AdvisoryMBranch] | [optional] | |
full_product_name | List[AdvisoryMFullProductName] | [optional] | |
items | List[AdvisoryMItem] | [optional] | |
name | str | [optional] | |
type | int | diff | [optional] |
from vulncheck_sdk.models.advisory_m_branch import AdvisoryMBranch
# TODO update the JSON string below
json = "{}"
# create an instance of AdvisoryMBranch from a JSON string
advisory_m_branch_instance = AdvisoryMBranch.from_json(json)
# print the JSON string representation of the object
print(AdvisoryMBranch.to_json())
# convert the object into a dict
advisory_m_branch_dict = advisory_m_branch_instance.to_dict()
# create an instance of AdvisoryMBranch from a dict
advisory_m_branch_from_dict = AdvisoryMBranch.from_dict(advisory_m_branch_dict)