Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.11 KB

ApiRelatedAttackPattern.md

File metadata and controls

32 lines (23 loc) · 1.11 KB

ApiRelatedAttackPattern

Properties

Name Type Description Notes
capec_id str [optional]
capec_name str [optional]
capec_url str [optional]
lang str [optional]

Example

from vulncheck_sdk.models.api_related_attack_pattern import ApiRelatedAttackPattern

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

# convert the object into a dict
api_related_attack_pattern_dict = api_related_attack_pattern_instance.to_dict()
# create an instance of ApiRelatedAttackPattern from a dict
api_related_attack_pattern_from_dict = ApiRelatedAttackPattern.from_dict(api_related_attack_pattern_dict)

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