Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1006 Bytes

AdvisoryTimeline.md

File metadata and controls

31 lines (22 loc) · 1006 Bytes

AdvisoryTimeline

Properties

Name Type Description Notes
lang str [optional]
time str FIXME: flip to time [optional]
value str [optional]

Example

from vulncheck_sdk.models.advisory_timeline import AdvisoryTimeline

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

# convert the object into a dict
advisory_timeline_dict = advisory_timeline_instance.to_dict()
# create an instance of AdvisoryTimeline from a dict
advisory_timeline_from_dict = AdvisoryTimeline.from_dict(advisory_timeline_dict)

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