Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.1 KB

ApiImpact.md

File metadata and controls

31 lines (22 loc) · 1.1 KB

ApiImpact

Properties

Name Type Description Notes
base_metric_v2 ApiBaseMetricV2 [optional]
base_metric_v3 ApiBaseMetricV3 [optional]
metric_v40 AdvisoryCVSSV40 this isn't called baseMetric, because it can contain other metrics -- typically supplemental metrics [optional]

Example

from vulncheck_sdk.models.api_impact import ApiImpact

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

# convert the object into a dict
api_impact_dict = api_impact_instance.to_dict()
# create an instance of ApiImpact from a dict
api_impact_from_dict = ApiImpact.from_dict(api_impact_dict)

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