Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.12 KB

AdvisoryAlmaPackageList.md

File metadata and controls

31 lines (22 loc) · 1.12 KB

AdvisoryAlmaPackageList

Properties

Name Type Description Notes
name str [optional]
packages List[AdvisoryAlmaPackage] [optional]
shortname str [optional]

Example

from vulncheck_sdk.models.advisory_alma_package_list import AdvisoryAlmaPackageList

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

# convert the object into a dict
advisory_alma_package_list_dict = advisory_alma_package_list_instance.to_dict()
# create an instance of AdvisoryAlmaPackageList from a dict
advisory_alma_package_list_from_dict = AdvisoryAlmaPackageList.from_dict(advisory_alma_package_list_dict)

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