Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.18 KB

AdvisoryMBranch.md

File metadata and controls

33 lines (24 loc) · 1.18 KB

AdvisoryMBranch

Properties

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]

Example

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)

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