Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 948 Bytes

AdvisoryToolRef.md

File metadata and controls

30 lines (21 loc) · 948 Bytes

AdvisoryToolRef

Properties

Name Type Description Notes
date_added str [optional]
url str [optional]

Example

from vulncheck_sdk.models.advisory_tool_ref import AdvisoryToolRef

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

# convert the object into a dict
advisory_tool_ref_dict = advisory_tool_ref_instance.to_dict()
# create an instance of AdvisoryToolRef from a dict
advisory_tool_ref_from_dict = AdvisoryToolRef.from_dict(advisory_tool_ref_dict)

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