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] |
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)