Name | Type | Description | Notes |
---|---|---|---|
name | List[AdvisoryIVal] | [optional] | |
url | List[str] | [optional] |
from vulncheck_sdk.models.advisory_acknowledgement import AdvisoryAcknowledgement
# TODO update the JSON string below
json = "{}"
# create an instance of AdvisoryAcknowledgement from a JSON string
advisory_acknowledgement_instance = AdvisoryAcknowledgement.from_json(json)
# print the JSON string representation of the object
print(AdvisoryAcknowledgement.to_json())
# convert the object into a dict
advisory_acknowledgement_dict = advisory_acknowledgement_instance.to_dict()
# create an instance of AdvisoryAcknowledgement from a dict
advisory_acknowledgement_from_dict = AdvisoryAcknowledgement.from_dict(advisory_acknowledgement_dict)