Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.18 KB

File metadata and controls

31 lines (22 loc) · 1.18 KB

Assetsv3VulnerabilityTrend

Properties

Name Type Description Notes
count str Count of vulnerabilities in a vulnerability group on a certain date. [optional]
var_date str [optional]
vulnerabilty_group str [optional]

Example

from ibm_gdsc_sdk_saas.models.assetsv3_vulnerability_trend import Assetsv3VulnerabilityTrend

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

# convert the object into a dict
assetsv3_vulnerability_trend_dict = assetsv3_vulnerability_trend_instance.to_dict()
# create an instance of Assetsv3VulnerabilityTrend from a dict
assetsv3_vulnerability_trend_from_dict = Assetsv3VulnerabilityTrend.from_dict(assetsv3_vulnerability_trend_dict)

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