Name |
Type |
Description |
Notes |
content |
str |
|
[optional] |
type |
str |
|
[optional] |
from vulncheck_sdk.models.advisory_metrics_other import AdvisoryMetricsOther
# TODO update the JSON string below
json = "{}"
# create an instance of AdvisoryMetricsOther from a JSON string
advisory_metrics_other_instance = AdvisoryMetricsOther.from_json(json)
# print the JSON string representation of the object
print(AdvisoryMetricsOther.to_json())
# convert the object into a dict
advisory_metrics_other_dict = advisory_metrics_other_instance.to_dict()
# create an instance of AdvisoryMetricsOther from a dict
advisory_metrics_other_from_dict = AdvisoryMetricsOther.from_dict(advisory_metrics_other_dict)
[Back to Model list] [Back to API list] [Back to README]