Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.24 KB

V3controllersPurlResponseData.md

File metadata and controls

30 lines (21 loc) · 1.24 KB

V3controllersPurlResponseData

Properties

Name Type Description Notes
cves List[str] list of associated CVE 's [optional]
vulnerabilities List[ApiOSSPackageVulnerability] list of associated vulnerabilities [optional]

Example

from vulncheck_sdk.models.v3controllers_purl_response_data import V3controllersPurlResponseData

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

# convert the object into a dict
v3controllers_purl_response_data_dict = v3controllers_purl_response_data_instance.to_dict()
# create an instance of V3controllersPurlResponseData from a dict
v3controllers_purl_response_data_from_dict = V3controllersPurlResponseData.from_dict(v3controllers_purl_response_data_dict)

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