Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1 KB

AdvisoryCorrection.md

File metadata and controls

31 lines (22 loc) · 1 KB

AdvisoryCorrection

Properties

Name Type Description Notes
corrected_at str [optional]
orelease str [optional]
release str [optional]

Example

from vulncheck_sdk.models.advisory_correction import AdvisoryCorrection

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

# convert the object into a dict
advisory_correction_dict = advisory_correction_instance.to_dict()
# create an instance of AdvisoryCorrection from a dict
advisory_correction_from_dict = AdvisoryCorrection.from_dict(advisory_correction_dict)

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