Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 976 Bytes

AdvisoryMEProduct.md

File metadata and controls

30 lines (21 loc) · 976 Bytes

AdvisoryMEProduct

Properties

Name Type Description Notes
id str [optional]
display_value str [optional]

Example

from vulncheck_sdk.models.advisory_me_product import AdvisoryMEProduct

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

# convert the object into a dict
advisory_me_product_dict = advisory_me_product_instance.to_dict()
# create an instance of AdvisoryMEProduct from a dict
advisory_me_product_from_dict = AdvisoryMEProduct.from_dict(advisory_me_product_dict)

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