Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.11 KB

AdvisoryChainGuardPackage.md

File metadata and controls

30 lines (21 loc) · 1.11 KB

AdvisoryChainGuardPackage

Properties

Name Type Description Notes
name str [optional]
secfixes List[AdvisoryChainGuardSecFix] [optional]

Example

from vulncheck_sdk.models.advisory_chain_guard_package import AdvisoryChainGuardPackage

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

# convert the object into a dict
advisory_chain_guard_package_dict = advisory_chain_guard_package_instance.to_dict()
# create an instance of AdvisoryChainGuardPackage from a dict
advisory_chain_guard_package_from_dict = AdvisoryChainGuardPackage.from_dict(advisory_chain_guard_package_dict)

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