Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.39 KB

File metadata and controls

36 lines (27 loc) · 1.39 KB

AppsecAttack

Properties

Name Type Description Notes
attack Attack [optional]
description str The description of the attack [optional]
metadata AttackMetadata [optional]
name str The user friendly name of the attack [optional]
id str The unique identifier of the attack [optional] [readonly]
links List[APILink] [optional]
owner str The friendly display name of the attack's owner [optional] [readonly]
owner_id str The unique identifier of the attack's owner [optional] [readonly]

Example

from cyperf.models.appsec_attack import AppsecAttack

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

# convert the object into a dict
appsec_attack_dict = appsec_attack_instance.to_dict()
# create an instance of AppsecAttack from a dict
appsec_attack_from_dict = AppsecAttack.from_dict(appsec_attack_dict)

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