Name |
Type |
Description |
Notes |
attack_complexity |
str |
|
[optional] |
attack_vector |
str |
|
[optional] |
availability_impact |
str |
|
[optional] |
base_score |
float |
|
[optional] |
base_severity |
str |
|
[optional] |
confidentiality_impact |
str |
|
[optional] |
integrity_impact |
str |
|
[optional] |
privileges_required |
str |
|
[optional] |
scope |
str |
|
[optional] |
user_interaction |
str |
|
[optional] |
vector_string |
str |
|
[optional] |
version |
str |
|
[optional] |
from vulncheck_sdk.models.api_cvssv3 import ApiCVSSV3
# TODO update the JSON string below
json = "{}"
# create an instance of ApiCVSSV3 from a JSON string
api_cvssv3_instance = ApiCVSSV3.from_json(json)
# print the JSON string representation of the object
print(ApiCVSSV3.to_json())
# convert the object into a dict
api_cvssv3_dict = api_cvssv3_instance.to_dict()
# create an instance of ApiCVSSV3 from a dict
api_cvssv3_from_dict = ApiCVSSV3.from_dict(api_cvssv3_dict)
[Back to Model list] [Back to API list] [Back to README]