Skip to content

Files

Latest commit

 

History

History
31 lines (22 loc) · 1.01 KB

ApiExploitChain.md

File metadata and controls

31 lines (22 loc) · 1.01 KB

ApiExploitChain

Properties

Name Type Description Notes
cves List[ApiExploitChainCVE] [optional]
date_added str [optional]
url str [optional]

Example

from vulncheck_sdk.models.api_exploit_chain import ApiExploitChain

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

# convert the object into a dict
api_exploit_chain_dict = api_exploit_chain_instance.to_dict()
# create an instance of ApiExploitChain from a dict
api_exploit_chain_from_dict = ApiExploitChain.from_dict(api_exploit_chain_dict)

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