Skip to content

Files

Latest commit

35de6c1 · Oct 12, 2024

History

History
32 lines (23 loc) · 999 Bytes
·

AdvisoryFlag.md

File metadata and controls

32 lines (23 loc) · 999 Bytes
·

AdvisoryFlag

Properties

Name Type Description Notes
var_date str [optional]
group_ids List[str] [optional]
label str [optional]
product_ids List[str] [optional]

Example

from vulncheck_sdk.models.advisory_flag import AdvisoryFlag

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

# convert the object into a dict
advisory_flag_dict = advisory_flag_instance.to_dict()
# create an instance of AdvisoryFlag from a dict
advisory_flag_from_dict = AdvisoryFlag.from_dict(advisory_flag_dict)

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