| 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] |
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)