Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1018 Bytes

AttackTrack.md

File metadata and controls

32 lines (23 loc) · 1018 Bytes

AttackTrack

Properties

Name Type Description Notes
actions List[AttackAction] [optional]
add_actions List[bytearray] [optional]
id str
links List[APILink] [optional]

Example

from cyperf.models.attack_track import AttackTrack

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

# convert the object into a dict
attack_track_dict = attack_track_instance.to_dict()
# create an instance of AttackTrack from a dict
attack_track_from_dict = AttackTrack.from_dict(attack_track_dict)

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