Name | Type | Description | Notes |
---|---|---|---|
country | str | [optional] | |
cve_references | List[AdvisoryCVEReference] | [optional] | |
date_added | str | [optional] | |
malpedia_url | str | [optional] | |
misp_id | str | [optional] | |
misp_threat_actor | AdvisoryMISPValueNoID | [optional] | |
mitre_attack_group | AdvisoryMITREAttackGroupNoID | [optional] | |
mitre_group_cti | AdvisoryMitreGroupCTI | [optional] | |
mitre_id | str | [optional] | |
threat_actor_name | str | [optional] | |
tools | List[AdvisoryTool] | [optional] | |
vendor_names_for_threat_actors | List[AdvisoryVendorNameForThreatActor] | [optional] | |
vendors_and_products_targeted | List[AdvisoryVendorProduct] | [optional] |
from vulncheck_sdk.models.advisory_threat_actor_with_external_objects import AdvisoryThreatActorWithExternalObjects
# TODO update the JSON string below
json = "{}"
# create an instance of AdvisoryThreatActorWithExternalObjects from a JSON string
advisory_threat_actor_with_external_objects_instance = AdvisoryThreatActorWithExternalObjects.from_json(json)
# print the JSON string representation of the object
print(AdvisoryThreatActorWithExternalObjects.to_json())
# convert the object into a dict
advisory_threat_actor_with_external_objects_dict = advisory_threat_actor_with_external_objects_instance.to_dict()
# create an instance of AdvisoryThreatActorWithExternalObjects from a dict
advisory_threat_actor_with_external_objects_from_dict = AdvisoryThreatActorWithExternalObjects.from_dict(advisory_threat_actor_with_external_objects_dict)