| Name | Type | Description | Notes |
|---|---|---|---|
| timeline_segments | List[AttackTimelineSegment] | [optional] | |
| links | List[APILink] | [optional] |
from cyperf.models.attack_objectives_and_timeline import AttackObjectivesAndTimeline
# TODO update the JSON string below
json = "{}"
# create an instance of AttackObjectivesAndTimeline from a JSON string
attack_objectives_and_timeline_instance = AttackObjectivesAndTimeline.from_json(json)
# print the JSON string representation of the object
print(AttackObjectivesAndTimeline.to_json())
# convert the object into a dict
attack_objectives_and_timeline_dict = attack_objectives_and_timeline_instance.to_dict()
# create an instance of AttackObjectivesAndTimeline from a dict
attack_objectives_and_timeline_from_dict = AttackObjectivesAndTimeline.from_dict(attack_objectives_and_timeline_dict)