Name | Type | Description | Notes |
---|---|---|---|
clone_https_url | str | [optional] | |
clone_ssh_url | str | [optional] | |
clone_ssh_url_cached | str | [optional] | |
cve | str | [optional] | |
date_added | str | [optional] | |
date_last_revised | str | [optional] | |
exploit_type | str | [optional] | |
forks | int | [optional] | |
html_url | str | [optional] | |
language | str | [optional] | |
reference_url | str | [optional] | |
refsource | str | [optional] | |
repo_full_path | str | [optional] | |
repo_id | str | [optional] | |
repo_name | str | [optional] | |
repo_owner | str | [optional] | |
stars | int | [optional] |
from vulncheck_sdk.models.advisory_gitee_exploit import AdvisoryGiteeExploit
# TODO update the JSON string below
json = "{}"
# create an instance of AdvisoryGiteeExploit from a JSON string
advisory_gitee_exploit_instance = AdvisoryGiteeExploit.from_json(json)
# print the JSON string representation of the object
print(AdvisoryGiteeExploit.to_json())
# convert the object into a dict
advisory_gitee_exploit_dict = advisory_gitee_exploit_instance.to_dict()
# create an instance of AdvisoryGiteeExploit from a dict
advisory_gitee_exploit_from_dict = AdvisoryGiteeExploit.from_dict(advisory_gitee_exploit_dict)