Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.06 KB

AdvisoryPackageStat.md

File metadata and controls

32 lines (23 loc) · 1.06 KB

AdvisoryPackageStat

Properties

Name Type Description Notes
cpe str [optional]
fix_state str [optional]
package_name str [optional]
product_name str [optional]

Example

from vulncheck_sdk.models.advisory_package_stat import AdvisoryPackageStat

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

# convert the object into a dict
advisory_package_stat_dict = advisory_package_stat_instance.to_dict()
# create an instance of AdvisoryPackageStat from a dict
advisory_package_stat_from_dict = AdvisoryPackageStat.from_dict(advisory_package_stat_dict)

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