Name |
Type |
Description |
Notes |
var_date |
int |
|
[optional] |
from vulncheck_sdk.models.advisory_alma_date import AdvisoryAlmaDate
# TODO update the JSON string below
json = "{}"
# create an instance of AdvisoryAlmaDate from a JSON string
advisory_alma_date_instance = AdvisoryAlmaDate.from_json(json)
# print the JSON string representation of the object
print(AdvisoryAlmaDate.to_json())
# convert the object into a dict
advisory_alma_date_dict = advisory_alma_date_instance.to_dict()
# create an instance of AdvisoryAlmaDate from a dict
advisory_alma_date_from_dict = AdvisoryAlmaDate.from_dict(advisory_alma_date_dict)
[Back to Model list] [Back to API list] [Back to README]