Name |
Type |
Description |
Notes |
clone_https_url |
str |
|
[optional] |
clone_ssh_url |
str |
|
[optional] |
clone_ssh_url_cached |
str |
|
[optional] |
currently_trending |
bool |
|
[optional] |
cve |
str |
|
[optional] |
date_added |
str |
|
[optional] |
date_last_revised |
str |
|
[optional] |
exploit_type |
str |
|
[optional] |
forks |
int |
|
[optional] |
html_url |
str |
|
[optional] |
id |
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_git_hub_exploit import AdvisoryGitHubExploit
# TODO update the JSON string below
json = "{}"
# create an instance of AdvisoryGitHubExploit from a JSON string
advisory_git_hub_exploit_instance = AdvisoryGitHubExploit.from_json(json)
# print the JSON string representation of the object
print(AdvisoryGitHubExploit.to_json())
# convert the object into a dict
advisory_git_hub_exploit_dict = advisory_git_hub_exploit_instance.to_dict()
# create an instance of AdvisoryGitHubExploit from a dict
advisory_git_hub_exploit_from_dict = AdvisoryGitHubExploit.from_dict(advisory_git_hub_exploit_dict)
[Back to Model list] [Back to API list] [Back to README]