Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 905 Bytes

AdvisoryUpdated.md

File metadata and controls

29 lines (20 loc) · 905 Bytes

AdvisoryUpdated

Properties

Name Type Description Notes
var_date str [optional]

Example

from vulncheck_sdk.models.advisory_updated import AdvisoryUpdated

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

# convert the object into a dict
advisory_updated_dict = advisory_updated_instance.to_dict()
# create an instance of AdvisoryUpdated from a dict
advisory_updated_from_dict = AdvisoryUpdated.from_dict(advisory_updated_dict)

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