Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 936 Bytes

AdvisoryStatus.md

File metadata and controls

30 lines (21 loc) · 936 Bytes

AdvisoryStatus

Properties

Name Type Description Notes
product_id List[str] [optional]
type str [optional]

Example

from vulncheck_sdk.models.advisory_status import AdvisoryStatus

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

# convert the object into a dict
advisory_status_dict = advisory_status_instance.to_dict()
# create an instance of AdvisoryStatus from a dict
advisory_status_from_dict = AdvisoryStatus.from_dict(advisory_status_dict)

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