Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 924 Bytes

AdvisoryAlmaDate.md

File metadata and controls

29 lines (20 loc) · 924 Bytes

AdvisoryAlmaDate

Properties

Name Type Description Notes
var_date int [optional]

Example

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]