Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.44 KB

AdvisoryMSCVRF.md

File metadata and controls

35 lines (26 loc) · 1.44 KB

AdvisoryMSCVRF

Properties

Name Type Description Notes
document_title AdvisoryMSDocumentTitle [optional]
document_tracking AdvisoryMDocumentTracking [optional]
product_tree AdvisoryMProductTree [optional]
document_type str [optional]
documentnotes List[AdvisoryRNote] diff [optional]
documentpublisher AdvisoryDocumentPublisher [optional]
vulnerability List[AdvisoryMVulnerability] [optional]

Example

from vulncheck_sdk.models.advisory_mscvrf import AdvisoryMSCVRF

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

# convert the object into a dict
advisory_mscvrf_dict = advisory_mscvrf_instance.to_dict()
# create an instance of AdvisoryMSCVRF from a dict
advisory_mscvrf_from_dict = AdvisoryMSCVRF.from_dict(advisory_mscvrf_dict)

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