Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1 KB

AdvisoryPyPARange.md

File metadata and controls

30 lines (21 loc) · 1 KB

AdvisoryPyPARange

Properties

Name Type Description Notes
events List[AdvisoryPyPAEvent] [optional]
ranges_type str [optional]

Example

from vulncheck_sdk.models.advisory_py_pa_range import AdvisoryPyPARange

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

# convert the object into a dict
advisory_py_pa_range_dict = advisory_py_pa_range_instance.to_dict()
# create an instance of AdvisoryPyPARange from a dict
advisory_py_pa_range_from_dict = AdvisoryPyPARange.from_dict(advisory_py_pa_range_dict)

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