Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.04 KB

AdvisoryCurlAffected.md

File metadata and controls

30 lines (21 loc) · 1.04 KB

AdvisoryCurlAffected

Properties

Name Type Description Notes
ranges List[AdvisoryCurlRange] [optional]
versions List[str] [optional]

Example

from vulncheck_sdk.models.advisory_curl_affected import AdvisoryCurlAffected

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

# convert the object into a dict
advisory_curl_affected_dict = advisory_curl_affected_instance.to_dict()
# create an instance of AdvisoryCurlAffected from a dict
advisory_curl_affected_from_dict = AdvisoryCurlAffected.from_dict(advisory_curl_affected_dict)

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