Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.15 KB

AdvisoryMitreGroupCTI.md

File metadata and controls

32 lines (23 loc) · 1.15 KB

AdvisoryMitreGroupCTI

Properties

Name Type Description Notes
aliases List[str] [optional]
description str [optional]
id str [optional]
references List[AdvisoryExternalReferences] [optional]

Example

from vulncheck_sdk.models.advisory_mitre_group_cti import AdvisoryMitreGroupCTI

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

# convert the object into a dict
advisory_mitre_group_cti_dict = advisory_mitre_group_cti_instance.to_dict()
# create an instance of AdvisoryMitreGroupCTI from a dict
advisory_mitre_group_cti_from_dict = AdvisoryMitreGroupCTI.from_dict(advisory_mitre_group_cti_dict)

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