Name |
Type |
Description |
Notes |
product |
str |
|
[optional] |
version |
str |
|
[optional] |
from vulncheck_sdk.models.advisory_foxit_affected import AdvisoryFoxitAffected
# TODO update the JSON string below
json = "{}"
# create an instance of AdvisoryFoxitAffected from a JSON string
advisory_foxit_affected_instance = AdvisoryFoxitAffected.from_json(json)
# print the JSON string representation of the object
print(AdvisoryFoxitAffected.to_json())
# convert the object into a dict
advisory_foxit_affected_dict = advisory_foxit_affected_instance.to_dict()
# create an instance of AdvisoryFoxitAffected from a dict
advisory_foxit_affected_from_dict = AdvisoryFoxitAffected.from_dict(advisory_foxit_affected_dict)
[Back to Model list] [Back to API list] [Back to README]