Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1023 Bytes

AdvisoryMReference.md

File metadata and controls

31 lines (22 loc) · 1023 Bytes

AdvisoryMReference

Properties

Name Type Description Notes
name str [optional]
tags List[str] [optional]
url str [optional]

Example

from vulncheck_sdk.models.advisory_m_reference import AdvisoryMReference

# TODO update the JSON string below
json = "{}"
# create an instance of AdvisoryMReference from a JSON string
advisory_m_reference_instance = AdvisoryMReference.from_json(json)
# print the JSON string representation of the object
print(AdvisoryMReference.to_json())

# convert the object into a dict
advisory_m_reference_dict = advisory_m_reference_instance.to_dict()
# create an instance of AdvisoryMReference from a dict
advisory_m_reference_from_dict = AdvisoryMReference.from_dict(advisory_m_reference_dict)

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