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]