Name | Type | Description | Notes |
---|---|---|---|
cves | List[ApiExploitChainCVE] | [optional] | |
date_added | str | [optional] | |
url | str | [optional] |
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)