Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.05 KB

AdvisoryAcknowledgement.md

File metadata and controls

30 lines (21 loc) · 1.05 KB

AdvisoryAcknowledgement

Properties

Name Type Description Notes
name List[AdvisoryIVal] [optional]
url List[str] [optional]

Example

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)

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