Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.42 KB

AdvisoryUbuntuPackageReleaseStatus.md

File metadata and controls

36 lines (27 loc) · 1.42 KB

AdvisoryUbuntuPackageReleaseStatus

Properties

Name Type Description Notes
affected bool [optional]
fixed bool [optional]
fixed_version str [optional]
lts bool [optional]
release str [optional]
release_long str [optional]
release_version str [optional]
status str [optional]

Example

from vulncheck_sdk.models.advisory_ubuntu_package_release_status import AdvisoryUbuntuPackageReleaseStatus

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

# convert the object into a dict
advisory_ubuntu_package_release_status_dict = advisory_ubuntu_package_release_status_instance.to_dict()
# create an instance of AdvisoryUbuntuPackageReleaseStatus from a dict
advisory_ubuntu_package_release_status_from_dict = AdvisoryUbuntuPackageReleaseStatus.from_dict(advisory_ubuntu_package_release_status_dict)

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