Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.21 KB

AdvisoryTeamViewer.md

File metadata and controls

36 lines (27 loc) · 1.21 KB

AdvisoryTeamViewer

Properties

Name Type Description Notes
bulletin_id str [optional]
cve List[str] [optional]
cvss_score str [optional]
cvss_vector str [optional]
date_added str [optional]
title str [optional]
updated_at str [optional]
url str [optional]

Example

from vulncheck_sdk.models.advisory_team_viewer import AdvisoryTeamViewer

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

# convert the object into a dict
advisory_team_viewer_dict = advisory_team_viewer_instance.to_dict()
# create an instance of AdvisoryTeamViewer from a dict
advisory_team_viewer_from_dict = AdvisoryTeamViewer.from_dict(advisory_team_viewer_dict)

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