Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.12 KB

ApiMitreAttackTech.md

File metadata and controls

34 lines (25 loc) · 1.12 KB

ApiMitreAttackTech

Properties

Name Type Description Notes
domain str [optional]
id str [optional]
name str [optional]
subtechnique bool [optional]
tactics List[str] [optional]
url str [optional]

Example

from vulncheck_sdk.models.api_mitre_attack_tech import ApiMitreAttackTech

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

# convert the object into a dict
api_mitre_attack_tech_dict = api_mitre_attack_tech_instance.to_dict()
# create an instance of ApiMitreAttackTech from a dict
api_mitre_attack_tech_from_dict = ApiMitreAttackTech.from_dict(api_mitre_attack_tech_dict)

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